@@ -191,7 +191,7 @@ discard block |
||
191 | 191 | /** |
192 | 192 | * {@inheritdoc} |
193 | 193 | */ |
194 | - public function foreach(\Closure $function): SetInterface |
|
194 | + public function foreach (\Closure $function): SetInterface |
|
195 | 195 | { |
196 | 196 | $this->values->foreach($function); |
197 | 197 | |
@@ -255,7 +255,7 @@ discard block |
||
255 | 255 | $this->validate($set); |
256 | 256 | $newSet = clone $this; |
257 | 257 | |
258 | - $set->foreach(function ($value) use (&$newSet) { |
|
258 | + $set->foreach(function($value) use (&$newSet) { |
|
259 | 259 | $newSet = $newSet->add($value); |
260 | 260 | }); |
261 | 261 |