Passed
Pull Request — stable (#24)
by Dmitry
01:29
created
src/Writer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/Adapters/Phpunit/Listener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/Adapters/Laravel/CollisionServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
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
             );
Please login to merge, or discard this patch.