@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | $frames = $this->getFrames($inspector); |
82 | 82 | $this->renderEditor(array_shift($frames)); |
83 | 83 | |
84 | - if ($this->showTrace && ! empty($frames)) { |
|
84 | + if ($this->showTrace && !empty($frames)) { |
|
85 | 85 | $this->renderTrace($frames); |
86 | 86 | } else { |
87 | 87 | $this->output->writeln(''); |
@@ -129,7 +129,7 @@ discard block |
||
129 | 129 | { |
130 | 130 | return $inspector->getFrames() |
131 | 131 | ->filter( |
132 | - function ($frame) { |
|
132 | + function($frame) { |
|
133 | 133 | foreach ($this->ignore as $ignore) { |
134 | 134 | if (preg_match($ignore, $frame->getFile())) { |
135 | 135 | return false; |
@@ -61,7 +61,7 @@ |
||
61 | 61 | */ |
62 | 62 | public function render(\Throwable $e) |
63 | 63 | { |
64 | - if (! static::$exceptionFound) { |
|
64 | + if (!static::$exceptionFound) { |
|
65 | 65 | $inspector = new Inspector($e); |
66 | 66 | |
67 | 67 | $this->writer->write($inspector); |
@@ -37,7 +37,7 @@ |
||
37 | 37 | |
38 | 38 | $this->app->singleton( |
39 | 39 | ExceptionHandlerContract::class, |
40 | - function ($app) use ($appExceptionHandler) { |
|
40 | + function($app) use ($appExceptionHandler) { |
|
41 | 41 | return new ExceptionHandler($app, $appExceptionHandler); |
42 | 42 | } |
43 | 43 | ); |