@@ -31,11 +31,11 @@ |
||
| 31 | 31 | */ |
| 32 | 32 | public function apply(\Iterator $set) |
| 33 | 33 | { |
| 34 | - $result = []; |
|
| 34 | + $result = [ ]; |
|
| 35 | 35 | |
| 36 | 36 | foreach ($set as $item) { |
| 37 | - if (! in_array($item, $result, $this->strict)) { |
|
| 38 | - $result[] = $item; |
|
| 37 | + if ( ! in_array($item, $result, $this->strict)) { |
|
| 38 | + $result[ ] = $item; |
|
| 39 | 39 | } |
| 40 | 40 | } |
| 41 | 41 | |