| 1 | <?php |
||
| 8 | class Client |
||
| 9 | { |
||
| 10 | private $httpClient; |
||
| 11 | private $responseBuilder; |
||
| 12 | |||
| 13 | 18 | public function __construct(ClientInterface $httpClient, ResponseBuilder $responseBuilder) |
|
| 18 | |||
| 19 | /** |
||
| 20 | * @throws \UnexpectedValueException When response body is not a valid json |
||
| 21 | * @throws \RuntimeException When there are transfer errors |
||
| 22 | */ |
||
| 23 | 10 | public function query(string $query, array $variables = null): Response |
|
| 42 | } |
||
| 43 |