Passed
Push — master ( 2ebc99...388773 )
by Nils
03:03
created
src/Check/Files/Content/NumberOfLinesCheck.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
         
38 38
         exec($command, $output, $return);
39 39
 
40
-        $numberLines = (int)$output[0];
40
+        $numberLines = (int) $output[0];
41 41
 
42 42
         if ($this->relation === self::RELATION_MAX) {
43 43
             if ($numberLines > $this->limit) {
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     public function init($file, $limit, $relation = self::RELATION_MAX, $pattern = null)
58 58
     {
59 59
         $this->file = $file;
60
-        $this->pattern = (array)$pattern;
60
+        $this->pattern = (array) $pattern;
61 61
         $this->relation = $relation;
62 62
         $this->limit = $limit;
63 63
     }
Please login to merge, or discard this patch.