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