| @@ -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 | |
| @@ -268,7 +268,7 @@ discard block | ||
| 268 | 268 | /** | 
| 269 | 269 |       * {@inheritdoc} | 
| 270 | 270 | */ | 
| 271 | - public function foreach(callable $function): MapInterface | |
| 271 | + public function foreach (callable $function): MapInterface | |
| 272 | 272 |      { | 
| 273 | 273 |          foreach ($this->pairs as $pair) { | 
| 274 | 274 | $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 | |
| @@ -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 | |