| 1 | <?php |
||
| 7 | class DummyLogger implements LoggerInterface |
||
| 8 | { |
||
| 9 | public function emergency($message, array $context = []) |
||
| 12 | |||
| 13 | public function alert($message, array $context = []) |
||
| 16 | |||
| 17 | public function critical($message, array $context = []) |
||
| 20 | |||
| 21 | public function error($message, array $context = []) |
||
| 24 | |||
| 25 | public function warning($message, array $context = []) |
||
| 28 | |||
| 29 | public function notice($message, array $context = []) |
||
| 32 | |||
| 33 | public function info($message, array $context = []) |
||
| 36 | |||
| 37 | public function debug($message, array $context = []) |
||
| 40 | |||
| 41 | public function log($level, $message, array $context = []) |
||
| 44 | } |
||
| 45 |