Completed
Push — master ( 73b3d9...d4697b )
by Ítalo
02:38
created
src/Iterator/LazyIterableTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -160,7 +160,7 @@
 block discarded – undo
160 160
     {
161 161
         /** @var VectorInterface $results */
162 162
         $results = new static();
163
-        $this->each(function ($subArray) use ($results) {
163
+        $this->each(function($subArray) use ($results) {
164 164
             foreach ($subArray as $item) {
165 165
                 $results->add($item);
166 166
             }
Please login to merge, or discard this patch.
src/Iterator/LazyKeyedIterableTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -218,7 +218,7 @@
 block discarded – undo
218 218
     {
219 219
         /** @var VectorInterface $results */
220 220
         $results = new static();
221
-        $this->each(function ($subArray) use ($results) {
221
+        $this->each(function($subArray) use ($results) {
222 222
             foreach ($subArray as $item) {
223 223
                 $results->add($item);
224 224
             }
Please login to merge, or discard this patch.