Passed
Pull Request — master (#18)
by
unknown
09:25
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) : object
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
 			//Must Return empty file object
61 61
 			return new FileElement(
62 62
 				$command->getFile()->md5(),
Please login to merge, or discard this patch.