Total Complexity | 1 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | final class LogLevel |
||
8 | { |
||
9 | public const EMERGENCY = 'emergency'; |
||
10 | public const ALERT = 'alert'; |
||
11 | public const CRITICAL = 'critical'; |
||
12 | public const ERROR = 'error'; |
||
13 | public const WARNING = 'warning'; |
||
14 | public const NOTICE = 'notice'; |
||
15 | public const INFO = 'info'; |
||
16 | public const DEBUG = 'debug'; |
||
17 | |||
18 | /** |
||
19 | * @return array<int,string> |
||
20 | */ |
||
21 | public static function getList(): array |
||
35 |