Total Complexity | 1 |
Total Lines | 24 |
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 | protected $implementor; |
||
30 | |||
31 | /** |
||
32 | * Base constructor. |
||
33 | * @param ResponderInterface $responder |
||
34 | * @param FactoryInterface $clientFactory |
||
35 | * @param ClientInterface $implementor |
||
36 | */ |
||
37 | public function __construct( |
||
47 |