1 | <?php |
||
25 | class AbstractApiService extends AbstractService |
||
26 | { |
||
27 | /** |
||
28 | * @var HttpClientInterface |
||
29 | */ |
||
30 | protected $httpClient; |
||
31 | |||
32 | /** |
||
33 | * AbstractService constructor. |
||
34 | * |
||
35 | * @param SerializerInterface $serializer |
||
36 | * @param HttpClientInterface $httpClient |
||
37 | */ |
||
38 | public function __construct(SerializerInterface $serializer, HttpClientInterface $httpClient) |
||
43 | |||
44 | protected function get($uri, array $options = []) |
||
57 | |||
58 | /** |
||
59 | * @param array $oldQueryOptions |
||
60 | * @param array $newQueryOptions |
||
61 | * |
||
62 | * @return mixed |
||
63 | */ |
||
64 | protected function mergeQueryOptions(array $oldQueryOptions, array $newQueryOptions){ |
||
70 | } |
||
71 |