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