@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | */ |
139 | 139 | public function every(callable $test): bool |
140 | 140 | { |
141 | - foreach($this as $item) { |
|
141 | + foreach ($this as $item) { |
|
142 | 142 | if (!$test($item)) { |
143 | 143 | return false; |
144 | 144 | } |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | */ |
155 | 155 | public function any(callable $test): bool |
156 | 156 | { |
157 | - foreach($this as $item) { |
|
157 | + foreach ($this as $item) { |
|
158 | 158 | if ($test($item)) { |
159 | 159 | return true; |
160 | 160 | } |