| 1 | <?php | ||
| 8 | class Client | ||
| 9 | { | ||
| 10 | private $httpClient; | ||
| 11 | private $responseBuilder; | ||
| 12 | |||
| 13 | 12 | 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 | 8 | public function query(string $query, array $variables = []): Response | |
| 40 | } | ||
| 41 |