Passed
Push — 1.x ( c94754...89dbdb )
by Ulises Jeremias
02:31
created
Mbh/Collection/Map.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
      */
98 98
     public function keys(): Set
99 99
     {
100
-        return new static($this->pairs->map(function ($pair) {
100
+        return new static($this->pairs->map(function($pair) {
101 101
             return $pair->key;
102 102
         }));
103 103
     }
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
      */
190 190
     public function values(): SequenceInterface
191 191
     {
192
-        return $this->pairs->map(function ($pair) {
192
+        return $this->pairs->map(function($pair) {
193 193
             return $pair->key;
194 194
         });
195 195
     }
Please login to merge, or discard this patch.