client = $client; } /** * @param $owner * @param $repositoryName * @return array */ public function get($owner, $repositoryName): array { $response = $this->client->request(self::BASE_URI . '/' . $owner . '/' . $repositoryName); return \GuzzleHttp\json_decode($response->getBody(), true); } }