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 | 25 | public function info($message, array $context = array()): bool |
|
51 | |||
52 | 28 | public function debug($message, array $context = array()): bool |
|
56 | |||
57 | /** |
||
58 | * @SuppressWarnings("unused") |
||
59 | * @param mixed $level |
||
60 | * @param string $message |
||
61 | * @param array $context |
||
62 | * @return bool |
||
63 | */ |
||
64 | 36 | public function log($level, $message, array $context = array()): bool |
|
68 | } |
||
69 |