Total Complexity | 4 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
26 | class LoggerManager |
||
27 | { |
||
28 | const ADAPTERS = [ |
||
29 | 'single', |
||
30 | 'daily', |
||
31 | ]; |
||
32 | |||
33 | /** |
||
34 | * @return Logger |
||
35 | * @throws ConfigException |
||
36 | * @throws DiException |
||
37 | * @throws LoggerException |
||
38 | * @throws ReflectionException |
||
39 | * @throws LangException |
||
40 | */ |
||
41 | public static function getHandler(): Logger |
||
67 | } |