1 | <?php |
||
15 | class DummyLogger implements LoggerInterface |
||
16 | { |
||
17 | 1 | public function emergency($message, array $context = array()): bool |
|
21 | |||
22 | 1 | public function alert($message, array $context = array()): bool |
|
26 | |||
27 | 1 | public function critical($message, array $context = array()): bool |
|
31 | |||
32 | 1 | public function error($message, array $context = array()): bool |
|
36 | |||
37 | 1 | public function warning($message, array $context = array()): bool |
|
41 | |||
42 | 1 | public function notice($message, array $context = array()): bool |
|
46 | |||
47 | 1 | public function info($message, array $context = array()): bool |
|
51 | |||
52 | 39 | public function debug($message, array $context = array()): bool |
|
56 | |||
57 | 47 | public function log($level, $message, array $context = array()): bool |
|
61 | } |
||
62 |