| Total Complexity | 9 |
| Total Lines | 36 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | class DummyLogger implements LoggerInterface |
||
| 17 | { |
||
| 18 | public function emergency($message, array $context = []): void |
||
| 19 | { |
||
| 20 | } |
||
| 21 | |||
| 22 | public function alert($message, array $context = []): void |
||
| 23 | { |
||
| 24 | } |
||
| 25 | |||
| 26 | public function critical($message, array $context = []): void |
||
| 27 | { |
||
| 28 | } |
||
| 29 | |||
| 30 | public function error($message, array $context = []): void |
||
| 31 | { |
||
| 32 | } |
||
| 33 | |||
| 34 | public function warning($message, array $context = []): void |
||
| 35 | { |
||
| 36 | } |
||
| 37 | |||
| 38 | public function notice($message, array $context = []): void |
||
| 39 | { |
||
| 40 | } |
||
| 41 | |||
| 42 | public function info($message, array $context = []): void |
||
| 44 | } |
||
| 45 | |||
| 46 | public function debug($message, array $context = []): void |
||
| 47 | { |
||
| 48 | } |
||
| 49 | |||
| 50 | public function log($level, $message, array $context = []): void |
||
| 52 | } |
||
| 53 | } |
||
| 54 |