Total Complexity | 1 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
18 | final class NullHandlerFactory extends AbstractFactory |
||
19 | { |
||
20 | /** |
||
21 | * @param ContainerInterface $container |
||
22 | * @param string $requestedName |
||
23 | * @param array<mixed>|null $options |
||
24 | * |
||
25 | * @return NullHandler |
||
26 | * |
||
27 | * @throws ServiceNotCreatedException |
||
28 | * @throws ContainerExceptionInterface |
||
29 | */ |
||
30 | 2 | public function __invoke(ContainerInterface $container, string $requestedName, array $options = null): NullHandler |
|
39 |