@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | |
4 | 4 | namespace Innmind\Immutable\Exception; |
5 | 5 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | |
4 | 4 | namespace Innmind\Immutable; |
5 | 5 |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | |
4 | 4 | namespace Innmind\Immutable; |
5 | 5 | |
@@ -211,7 +211,7 @@ discard block |
||
211 | 211 | /** |
212 | 212 | * {@inheritdoc} |
213 | 213 | */ |
214 | - public function foreach(callable $function): SequenceInterface |
|
214 | + public function foreach (callable $function): SequenceInterface |
|
215 | 215 | { |
216 | 216 | foreach ($this->values as $value) { |
217 | 217 | $function($value); |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | |
4 | 4 | namespace Innmind\Immutable; |
5 | 5 | |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | * |
86 | 86 | * @return self<T> |
87 | 87 | */ |
88 | - public function foreach(callable $function): self; |
|
88 | + public function foreach (callable $function): self; |
|
89 | 89 | |
90 | 90 | /** |
91 | 91 | * Return a new map of pairs grouped by keys determined with the given |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | |
4 | 4 | namespace Innmind\Immutable; |
5 | 5 | |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | * |
88 | 88 | * @return self<T, S> |
89 | 89 | */ |
90 | - public function foreach(callable $function): self; |
|
90 | + public function foreach (callable $function): self; |
|
91 | 91 | |
92 | 92 | /** |
93 | 93 | * Return a new map of pairs' sequences grouped by keys determined with the given |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | |
4 | 4 | namespace Innmind\Immutable; |
5 | 5 | |
@@ -219,7 +219,7 @@ discard block |
||
219 | 219 | /** |
220 | 220 | * {@inheritdoc} |
221 | 221 | */ |
222 | - public function foreach(callable $function): SetInterface |
|
222 | + public function foreach (callable $function): SetInterface |
|
223 | 223 | { |
224 | 224 | $this->values->foreach($function); |
225 | 225 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | |
4 | 4 | namespace Innmind\Immutable\Specification; |
5 | 5 |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | |
4 | 4 | namespace Innmind\Immutable; |
5 | 5 | |
@@ -224,7 +224,7 @@ discard block |
||
224 | 224 | /** |
225 | 225 | * {@inheritdoc} |
226 | 226 | */ |
227 | - public function foreach(callable $function): StreamInterface |
|
227 | + public function foreach (callable $function): StreamInterface |
|
228 | 228 | { |
229 | 229 | $this->values->foreach($function); |
230 | 230 |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | |
4 | 4 | namespace Innmind\Immutable; |
5 | 5 | |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | * |
88 | 88 | * @return self |
89 | 89 | */ |
90 | - public function foreach(callable $function): self; |
|
90 | + public function foreach (callable $function): self; |
|
91 | 91 | |
92 | 92 | /** |
93 | 93 | * Return a new map of pairs grouped by keys determined with the given |