Passed
Push — 2.0 ( a6bd12...a1f142 )
by Kirill
02:56
created
server/app/Exceptions/Handler.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
  * For the full copyright and license information, please view the LICENSE
6 6
  * file that was distributed with this source code.
7 7
  */
8
-declare(strict_types=1);
8
+declare(strict_types = 1);
9 9
 
10 10
 namespace App\Exceptions;
11 11
 
@@ -65,9 +65,9 @@  discard block
 block discarded – undo
65 65
     {
66 66
         $exception = $this->prepareException($exception);
67 67
 
68
-        $htmlAccepted = ! $request->ajax() && $request->acceptsHtml();
68
+        $htmlAccepted = !$request->ajax() && $request->acceptsHtml();
69 69
 
70
-        if ($htmlAccepted && ! config('app.debug')) {
70
+        if ($htmlAccepted && !config('app.debug')) {
71 71
             $whoops = new Run();
72 72
             $whoops->pushHandler(new PrettyPageHandler());
73 73
 
Please login to merge, or discard this patch.