Completed
Push — master ( 7482d8...b6686e )
by Rudi
02:24
created
src/Ds/Pair.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
      */
56 56
     public function copy(): Pair
57 57
     {
58
-        $key   = is_object($this->key)   ? clone $this->key   : $this->key;
58
+        $key   = is_object($this->key) ? clone $this->key : $this->key;
59 59
         $value = is_object($this->value) ? clone $this->value : $this->value;
60 60
 
61 61
         return new self($key, $value);
Please login to merge, or discard this patch.
src/Ds/Traits/Sequence.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -260,9 +260,9 @@
 block discarded – undo
260 260
         $r = $this->normalizeRotations($rotations, $n);
261 261
 
262 262
         if ($r > 0) {
263
-            $this->reverseRange(0,  $r);
263
+            $this->reverseRange(0, $r);
264 264
             $this->reverseRange($r, $n);
265
-            $this->reverseRange(0,  $n);
265
+            $this->reverseRange(0, $n);
266 266
         }
267 267
     }
268 268
 
Please login to merge, or discard this patch.