1 | <?php declare(strict_types=1); |
||
15 | class Logger implements LoggerInterface |
||
16 | { |
||
17 | 1 | public function emergency($message, array $context = []): void |
|
21 | |||
22 | 2 | public function alert($message, array $context = []): void |
|
26 | |||
27 | 1 | public function critical($message, array $context = []): void |
|
31 | |||
32 | 1 | public function error($message, array $context = []): void |
|
36 | |||
37 | 1 | public function warning($message, array $context = []): void |
|
41 | |||
42 | 1 | public function notice($message, array $context = []): void |
|
46 | |||
47 | 4 | public function info($message, array $context = []): void |
|
51 | |||
52 | 1 | public function debug($message, array $context = []): void |
|
56 | |||
57 | 12 | public function log($level, $message, array $context = []): void |
|
66 | } |
||
67 |