Total Complexity | 3 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 85.71% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class BuzzFactory implements ClientFactory |
||
13 | { |
||
14 | /** @var ResponseFactoryInterface */ |
||
15 | private $responseFactory; |
||
16 | |||
17 | 1 | public function __construct(ResponseFactoryInterface $responseFactory) |
|
20 | 1 | } |
|
21 | |||
22 | /** |
||
23 | * @param array<string, mixed> $config |
||
24 | * |
||
25 | * @return HttpClient |
||
26 | */ |
||
27 | 1 | public function createClient(array $config = []): HttpClient |
|
36 |