| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 20 | public function __invoke(ContainerInterface $container, string $requestedName, array $options = null): NullHandler |
||
| 21 | { |
||
| 22 | $options = $options ?? $this->getServiceOptions($container, $requestedName); |
||
| 23 | |||
| 24 | $level = $options['level'] ?? Logger::DEBUG; |
||
| 25 | |||
| 26 | return new NullHandler($level); |
||
| 27 | } |
||
| 29 |