1 | <?php declare(strict_types=1); |
||
16 | abstract class AbstractClient implements AdapterInterface |
||
17 | { |
||
18 | /** |
||
19 | * @var array |
||
20 | */ |
||
21 | protected $options = []; |
||
22 | |||
23 | /** |
||
24 | * @param Client $client |
||
25 | * @return array |
||
26 | */ |
||
27 | protected function buildHeaders(Client $client): array |
||
35 | |||
36 | /** |
||
37 | * @param array $options |
||
38 | * @return AdapterInterface |
||
39 | */ |
||
40 | public function setOptions(array $options = []): AdapterInterface |
||
46 | } |
||
47 |