Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | abstract class AbstractProvider implements ProviderInterface |
||
8 | { |
||
9 | /** |
||
10 | * @var ClientInterface |
||
11 | */ |
||
12 | private $client; |
||
13 | |||
14 | public function __construct(ClientInterface $client) |
||
17 | } |
||
18 | |||
19 | /** |
||
20 | * Returns the HTTP adapter. |
||
21 | * |
||
22 | * {@inheritdoc} |
||
23 | */ |
||
24 | public function getClient(): ClientInterface |
||
29 |