| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 29 | public function configure(): void |
||
| 30 | { |
||
| 31 | /** @var HandlerStreamConfigurationInterface $configuration */ |
||
| 32 | $configuration = $this->handlerConfiguration; |
||
| 33 | |||
| 34 | $this->handler = new MonologStreamHandler( |
||
| 35 | $configuration->getLogFile(), |
||
| 36 | // @phpstan-ignore-next-line |
||
| 37 | $this->loggerProviderTypeConfiguration |
||
| 38 | ->getLogLevel() |
||
| 39 | ->level(), |
||
| 40 | true, |
||
| 41 | null, |
||
| 42 | $configuration->useLocking(), |
||
| 43 | ); |
||
| 51 |