Total Complexity | 5 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | final class ErrorLogHandlerFactory extends AbstractFactory |
||
22 | { |
||
23 | /** |
||
24 | * @param ContainerInterface $container |
||
25 | * @param string $requestedName |
||
26 | * @param array<mixed>|null $options |
||
27 | * |
||
28 | * @return ErrorLogHandler |
||
29 | * |
||
30 | * @throws ServiceNotCreatedException |
||
31 | */ |
||
32 | 1 | public function __invoke( |
|
50 |