| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 33 | 37 | public function get(string $uri, array $query = []): array |
|
| 34 | { |
||
| 35 | 37 | $response = $this->client->getHttpClient()->request('GET', '/api/' . $this->version |
|
| 36 | 37 | . $uri, ['query' => $query]); |
|
| 37 | 37 | $this->client->setLastResponse($response); |
|
| 38 | |||
| 39 | 37 | return $this->transformer->transform($response); |
|
| 40 | } |
||
| 41 | } |
||
| 42 |