Completed
Push — develop ( 15ec3c...8b62a8 )
by Baptiste
02:19
created
src/Lazy/Map.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -200,7 +200,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Lazy/Stream.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -205,7 +205,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Lazy/Set.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -170,7 +170,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Compilation/Service/Constructor/Stream.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.