Passed
Push — master ( f4cad5...f9082a )
by Nils
04:36
created
src/Check/System/Process/LineCountCheck.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
 
42 42
         exec($command, $output);
43 43
 
44
-        $count = (int)$output[0];
44
+        $count = (int) $output[0];
45 45
 
46 46
         if ($this->maxNumber && $count > $this->maxNumber) {
47 47
             $result = new MetricAwareResult(Result::STATUS_FAIL, 'Too many lines found "' . $this->command . '" (current: ' . $count . ', expected < ' . $this->maxNumber . ').');
Please login to merge, or discard this patch.