| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 30 | 2 | public function __invoke(ContainerInterface $container, string $requestedName, array $options = null): NullHandler |
|
| 31 | { |
||
| 32 | 2 | $options = $options ?? $this->getServiceOptions($container, $requestedName); |
|
| 33 | |||
| 34 | 2 | $level = $options['level'] ?? Logger::DEBUG; |
|
| 35 | |||
| 36 | 2 | return new NullHandler($level); |
|
| 37 | } |
||
| 39 |