@@ -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 @@ |
||
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\Map; |
5 | 5 | |
@@ -240,7 +240,7 @@ discard block |
||
240 | 240 | /** |
241 | 241 | * {@inheritdoc} |
242 | 242 | */ |
243 | - public function foreach(callable $function): MapInterface |
|
243 | + public function foreach (callable $function): MapInterface |
|
244 | 244 | { |
245 | 245 | foreach ($this->values as $k => $v) { |
246 | 246 | $function($this->normalizeKey($k), $v); |
@@ -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 | |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | * |
60 | 60 | * @param callable(mixed): void $function |
61 | 61 | */ |
62 | - public function foreach(callable $function): self; |
|
62 | + public function foreach (callable $function): self; |
|
63 | 63 | |
64 | 64 | /** |
65 | 65 | * Return a new map of pairs grouped by keys determined with the given |