@@ -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\Specification; |
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\Specification; |
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\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\Map; |
5 | 5 | |
@@ -247,7 +247,7 @@ discard block |
||
247 | 247 | /** |
248 | 248 | * {@inheritdoc} |
249 | 249 | */ |
250 | - public function foreach(callable $function): MapInterface |
|
250 | + public function foreach (callable $function): MapInterface |
|
251 | 251 | { |
252 | 252 | foreach ($this->values as $k) { |
253 | 253 | $v = $this->values[$k]; |
@@ -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 | |
@@ -252,7 +252,7 @@ discard block |
||
252 | 252 | /** |
253 | 253 | * {@inheritdoc} |
254 | 254 | */ |
255 | - public function foreach(callable $function): MapInterface |
|
255 | + public function foreach (callable $function): MapInterface |
|
256 | 256 | { |
257 | 257 | foreach ($this->pairs as $pair) { |
258 | 258 | $function($pair->key(), $pair->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 | |
@@ -237,7 +237,7 @@ discard block |
||
237 | 237 | /** |
238 | 238 | * {@inheritdoc} |
239 | 239 | */ |
240 | - public function foreach(callable $function): MapInterface |
|
240 | + public function foreach (callable $function): MapInterface |
|
241 | 241 | { |
242 | 242 | $this->implementation->foreach($function); |
243 | 243 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | |
4 | 4 | use Innmind\Immutable\Map; |
5 | 5 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | |
4 | 4 | use Innmind\Immutable\Map; |
5 | 5 |