Total Complexity | 1 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | abstract class Base implements ClientInterface |
||
22 | { |
||
23 | protected $client; |
||
24 | |||
25 | protected $clientFactory; |
||
26 | |||
27 | protected $responder; |
||
28 | |||
29 | /** |
||
30 | * Base constructor. |
||
31 | * @param ResponderInterface $responder |
||
32 | * @param FactoryInterface $clientFactory |
||
33 | */ |
||
34 | public function __construct( |
||
42 |