Passed
Push — 1.x ( 0d8aff...6de16b )
by Ulises Jeremias
04:34
created
Mbh/Collection/Map.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
      */
124 124
     public function keys(): Set
125 125
     {
126
-        return new Set($this->pairs->map(function ($pair) {
126
+        return new Set($this->pairs->map(function($pair) {
127 127
             return $pair->key;
128 128
         }));
129 129
     }
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
      */
185 185
     public function pairs(): SequenceableInterface
186 186
     {
187
-        return $this->pairs->map(function ($pair) {
187
+        return $this->pairs->map(function($pair) {
188 188
             return $pair->copy();
189 189
         });
190 190
     }
@@ -227,7 +227,7 @@  discard block
 block discarded – undo
227 227
      */
228 228
     public function values(): SequenceableInterface
229 229
     {
230
-        return $this->pairs->map(function ($pair) {
230
+        return $this->pairs->map(function($pair) {
231 231
             return $pair->value;
232 232
         });
233 233
     }
Please login to merge, or discard this patch.