Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
15 | class ConsoleLog extends LogOutputAbstract{ |
||
16 | |||
17 | /** |
||
18 | * @inheritdoc |
||
19 | */ |
||
20 | protected function __log(string $level, string $message, array $context = null){ |
||
21 | echo $this->message($level, $message, $context); |
||
22 | } |
||
23 | |||
24 | /** |
||
25 | * @inheritdoc |
||
26 | */ |
||
27 | public function close():LogOutputInterface{ |
||
31 | } |
||
32 | |||
34 |