| Total Complexity | 6 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 10 | class MonologHandler extends AbstractProcessingHandler |
||
| 11 | { |
||
| 12 | protected $logfile; |
||
| 13 | |||
| 14 | public function __construct(Logfile $logfile, int $level = Logger::DEBUG, bool $bubble = true) |
||
| 15 | { |
||
| 16 | $this->logfile = $logfile; |
||
| 17 | parent::__construct($level, $bubble); |
||
| 18 | } |
||
| 19 | |||
| 20 | protected function getDefaultFormatter(): FormatterInterface |
||
| 23 | } |
||
| 24 | |||
| 25 | protected function write(array $record) |
||
| 36 | } |
||
| 37 | } |
||
| 39 |