1 | <?php |
||
24 | class Log |
||
25 | { |
||
26 | /** |
||
27 | * @var LoggerInterface |
||
28 | */ |
||
29 | protected static $_logger; |
||
30 | |||
31 | public static function setLogger(LoggerInterface $logger) |
||
35 | |||
36 | public static function getLogger() |
||
40 | |||
41 | public static function __callStatic($method, $args) |
||
45 | |||
46 | public function __call($method, $args) |
||
50 | |||
51 | public static function createDefaultLogger() |
||
58 | } |
||
59 |