Passed
Push — master ( 43520a...ac80f5 )
by Francesco
03:40
created
src/Middleware/ErrorHandlingMiddleware.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,12 +51,12 @@
 block discarded – undo
51 51
     public function execute(Command $command, callable $next)
52 52
     {
53 53
         $filename = $command->getFile()->path();
54
-        $this->apiDocBuilder->debug('Starting to parse file: '.$filename);
54
+        $this->apiDocBuilder->debug('Starting to parse file: ' . $filename);
55 55
 
56 56
         try {
57 57
             return $next($command);
58 58
         } catch (Exception $e) {
59
-            $this->apiDocBuilder->log('Unable to parse file "'.$filename.'", '.$e->getMessage());
59
+            $this->apiDocBuilder->log('Unable to parse file "' . $filename . '", ' . $e->getMessage());
60 60
         }
61 61
     }
62 62
 }
Please login to merge, or discard this patch.