Passed
Push — master ( 10a191...f27997 )
by Nils
04:52
created
src/Check/Files/Content/NumberOfLinesCheck.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
             $command = 'cat ' . $file . $grep . ' | wc -l';
56 56
 
57 57
             exec($command, $output, $return);
58
-            $numberOfLines += (int)$output[0];
58
+            $numberOfLines += (int) $output[0];
59 59
         }
60 60
         return $numberOfLines;
61 61
     }
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
         }
93 93
 
94 94
         $this->files = $files;
95
-        $this->pattern = (array)$pattern;
95
+        $this->pattern = (array) $pattern;
96 96
         $this->relation = $relation;
97 97
         $this->limit = $limit;
98 98
     }
Please login to merge, or discard this patch.