Passed
Push — master ( f9082a...b37d43 )
by Nils
02:21
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
             $output = [];
57 57
             exec($command, $output, $return);
58
-            $numberOfLines += (int)$output[0];
58
+            $numberOfLines += (int) $output[0];
59 59
         }
60 60
         return $numberOfLines;
61 61
     }
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
         }
96 96
 
97 97
         $this->files = $files;
98
-        $this->pattern = (array)$pattern;
98
+        $this->pattern = (array) $pattern;
99 99
         $this->relation = $relation;
100 100
         $this->limit = $limit;
101 101
     }
Please login to merge, or discard this patch.