@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | { |
| 53 | 53 | $debugger = new Run(); |
| 54 | 54 | |
| 55 | - if (! is_online()) { |
|
| 55 | + if (!is_online()) { |
|
| 56 | 56 | if (Misc::isCommandLine()) { |
| 57 | 57 | $debugger->pushHandler(new PlainTextHandler()); |
| 58 | 58 | } elseif (Misc::isAjaxRequest()) { |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | /** |
| 66 | 66 | * On log toutes les erreurs |
| 67 | 67 | */ |
| 68 | - $debugger->pushHandler(static function (Throwable $exception, Inspector $inspector, RunInterface $run) { |
|
| 68 | + $debugger->pushHandler(static function(Throwable $exception, Inspector $inspector, RunInterface $run) { |
|
| 69 | 69 | Services::logger()->error($exception); |
| 70 | 70 | |
| 71 | 71 | return Handler::DONE; |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | $debugger = Ignition::make(); |
| 85 | 85 | |
| 86 | 86 | $debugger->applicationPath(ROOTPATH) |
| 87 | - ->shouldDisplayException(! on_prod()) |
|
| 87 | + ->shouldDisplayException(!on_prod()) |
|
| 88 | 88 | ->register(); |
| 89 | 89 | } |
| 90 | 90 | } |