yet another github api refactoring
[pharext/pharext.org] / app / Github / API / Repos / ReadRepo.php
index e432d2a2a8557a2eba98d10caf5b5ea6e64b783c..2a82b0879ea7d11e3ed037a8e7dd02459e62dc0c 100644 (file)
@@ -18,7 +18,8 @@ class ReadRepo extends Call
                        if ($response->getResponseCode() >= 400 || null === ($json = json_decode($response->getBody()))) {
                                throw new RequestException($response);
                        }
-                       $this->saveToCache($json);
+                       $this->result = [$json];
+                       $this->saveToCache($this->result);
                        $callback($json);
                        return true;
                });