Total Complexity | 1 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
5 | enum Level: int |
||
6 | { |
||
7 | |||
8 | case Debug = 100; |
||
9 | |||
10 | case Info = 200; |
||
11 | |||
12 | case Notice = 250; |
||
13 | |||
14 | case Warning = 300; |
||
15 | |||
16 | case Error = 400; |
||
17 | |||
18 | case Critical = 500; |
||
19 | |||
20 | case Alert = 550; |
||
21 | |||
22 | case Emergency = 600; |
||
23 | |||
24 | /** |
||
25 | * @param Level $level Minimal log level |
||
26 | * @return bool |
||
27 | */ |
||
28 | public function isToLog(Level $level): bool |
||
48 |