@@ -200,7 +200,7 @@ |
||
200 | 200 | /** |
201 | 201 | * {@inheritdoc} |
202 | 202 | */ |
203 | - public function foreach(callable $function): MapInterface |
|
203 | + public function foreach (callable $function): MapInterface |
|
204 | 204 | { |
205 | 205 | return $this->loadedMap()->foreach($function); |
206 | 206 | } |
@@ -205,7 +205,7 @@ |
||
205 | 205 | /** |
206 | 206 | * {@inheritdoc} |
207 | 207 | */ |
208 | - public function foreach(callable $function): StreamInterface |
|
208 | + public function foreach (callable $function): StreamInterface |
|
209 | 209 | { |
210 | 210 | return $this->stream()->foreach($function); |
211 | 211 | } |
@@ -170,7 +170,7 @@ |
||
170 | 170 | /** |
171 | 171 | * {@inheritdoc} |
172 | 172 | */ |
173 | - public function foreach(callable $function): SetInterface |
|
173 | + public function foreach (callable $function): SetInterface |
|
174 | 174 | { |
175 | 175 | return $this->set()->foreach($function); |
176 | 176 | } |
@@ -20,7 +20,7 @@ |
||
20 | 20 | $this->type = $type; |
21 | 21 | $this->arguments = ImmutableStream::of(Argument::class, ...$arguments)->map(static function(Argument $argument): Argument { |
22 | 22 | return new Lazy($argument); |
23 | - });; |
|
23 | + }); ; |
|
24 | 24 | } |
25 | 25 | |
26 | 26 | public function __toString(): string |