| Total Complexity | 5 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | class HttpClientFactory implements Contract\HttpClientFactoryInterface |
||
| 18 | { |
||
| 19 | public function __construct(private ContainerInterface $container) {} |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @throws ContainerExceptionInterface |
||
| 23 | * @throws ContainerException |
||
| 24 | * @throws InvalidConfigException |
||
| 25 | * @throws NotFoundExceptionInterface |
||
| 26 | */ |
||
| 27 | public function create(?array $options = []): ClientInterface |
||
| 42 | } |
||
| 43 | } |
||
| 44 |