1 | <?php |
||
19 | class NullLoggerBuilder implements LoggerBuilderInterface |
||
20 | { |
||
21 | |||
22 | /** |
||
23 | * This method MUST return a valid PSR3 logger |
||
24 | * @return \Psr\Log\NullLogger |
||
25 | */ |
||
26 | 2 | public function getLogger() |
|
30 | |||
31 | /** |
||
32 | * This method MUST return the name of the main class |
||
33 | * @return string |
||
34 | */ |
||
35 | 1 | public function getMainClassName() |
|
39 | |||
40 | /** |
||
41 | * This method MUST return the name of the package name |
||
42 | * @return string |
||
43 | */ |
||
44 | 1 | public function getPackageName() |
|
48 | |||
49 | } |
||
50 |