Completed
Push — master ( 867177...7482d8 )
by Rudi
02:19
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.