Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | public static function web(HandlerInterface $handler = null): void |
||
24 | { |
||
25 | if ('prod' === EnvAccess::get('APP_ENV', 'dev')) { |
||
26 | error_reporting(0); |
||
27 | ini_set('display_errors', '0'); |
||
28 | |||
29 | return; |
||
30 | } |
||
31 | |||
32 | (new Run())->pushHandler($handler ?? new PrettyPageHandler())->register(); |
||
33 | } |
||
43 |