| Total Complexity | 6 | 
| Total Lines | 34 | 
| Duplicated Lines | 0 % | 
| Coverage | 90% | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 18 | class CurlFactory implements ClientFactory  | 
            ||
| 19 | { | 
            ||
| 20 | private ResponseFactoryInterface $responseFactory;  | 
            ||
| 21 | |||
| 22 | private StreamFactoryInterface $streamFactory;  | 
            ||
| 23 | |||
| 24 | public function __construct(ResponseFactoryInterface $responseFactory, StreamFactoryInterface $streamFactory)  | 
            ||
| 28 | }  | 
            ||
| 29 | 1 | ||
| 30 | public function createClient(array $config = []): ClientInterface  | 
            ||
| 54 |