@@ -37,7 +37,7 @@ discard block |
||
| 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 |
||
| 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 | } |