1 | <?php |
||
7 | class VoidLogger implements LoggerInterface |
||
8 | { |
||
9 | public function emergency($message, array $context = array()) {} |
||
10 | |||
11 | public function alert($message, array $context = array()) {} |
||
12 | |||
13 | public function critical($message, array $context = array()) {} |
||
14 | |||
15 | public function error($message, array $context = array()) {} |
||
16 | |||
17 | public function warning($message, array $context = array()) {} |
||
18 | |||
19 | public function notice($message, array $context = array()) {} |
||
20 | |||
21 | public function info($message, array $context = array()) {} |
||
22 | |||
23 | public function debug($message, array $context = array()) {} |
||
24 | |||
25 | public function log($level, $message, array $context = array()) {} |
||
26 | } |