Passed
Push — main ( af755d...c6deb1 )
by Dimitri
04:08
created
src/Debug/Debugger.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.