Total Complexity | 3 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | final class Debug |
||
17 | { |
||
18 | /** |
||
19 | * Enables debug mode for web environment (only for non-production) |
||
20 | * |
||
21 | * @param HandlerInterface|null $handler custom error handler |
||
22 | */ |
||
23 | public static function web(HandlerInterface $handler = null): void |
||
33 | } |
||
34 | |||
35 | /** |
||
36 | * Enables debug mode for CLI environment |
||
37 | */ |
||
38 | public static function cli(): void |
||
43 |