| 1 | <?php |
||
| 18 | abstract class AbstractClient implements AdapterInterface |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var array |
||
| 22 | */ |
||
| 23 | protected $options = []; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param Client $client |
||
| 27 | * @return array |
||
| 28 | */ |
||
| 29 | protected function buildHeaders(Client $client): array |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @param array $options |
||
| 40 | * @return AdapterInterface |
||
| 41 | */ |
||
| 42 | public function setOptions(array $options = []): AdapterInterface |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @param Client $client |
||
| 51 | * @param string $message |
||
| 52 | */ |
||
| 53 | protected function debugLog(Client $client, string $message) |
||
| 59 | } |
||
| 60 |