@@ -5,7 +5,7 @@ discard block |
||
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 |
||
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 |