1 | <?php |
||
13 | abstract class AbstractAdapter implements AdapterInterface |
||
14 | { |
||
15 | const PROTOCOL_NAME = 'abstract'; |
||
16 | |||
17 | /** |
||
18 | * @var ClientInterface |
||
19 | */ |
||
20 | protected $client; |
||
21 | |||
22 | /** |
||
23 | * Constructor. |
||
24 | * |
||
25 | * @param ClientInterface $client |
||
26 | */ |
||
27 | public function __construct(ClientInterface $client) |
||
31 | |||
32 | /** |
||
33 | * {@inheritdoc} |
||
34 | */ |
||
35 | public function getProtocol() |
||
39 | } |
||
40 |