Passed
Push — master ( 5bb496...7f5a29 )
by Scott
02:11
created
src/PhpStanLoader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
     protected function checkForFilename($line, $currentFile)
76 76
     {
77 77
         if (strpos($line, " Line ")) {
78
-            return trim(str_replace('Line', '',$line));
78
+            return trim(str_replace('Line', '', $line));
79 79
         }
80 80
         return $currentFile;
81 81
     }
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
 
102 102
     protected function trimLines()
103 103
     {
104
-        array_walk_recursive($this->invalidLines, function (&$item) {
104
+        array_walk_recursive($this->invalidLines, function(&$item) {
105 105
             if (is_string($item)) {
106 106
                 $item = trim($item);
107 107
             }
Please login to merge, or discard this patch.