Completed
Push — master ( 45932f...0c02c0 )
by Michał
02:39
created
src/utils/Arr.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -748,7 +748,7 @@  discard block
 block discarded – undo
748 748
                 return;
749 749
             }
750 750
 
751
-            $array =& $array[$key];
751
+            $array = & $array[$key];
752 752
         }
753 753
 
754 754
         unset($array[array_shift($keys)]);
@@ -842,7 +842,7 @@  discard block
 block discarded – undo
842 842
                 $array[$key] = [];
843 843
             }
844 844
 
845
-            $array =& $array[$key];
845
+            $array = & $array[$key];
846 846
         }
847 847
 
848 848
         return $array[array_shift($keys)] = $value;
Please login to merge, or discard this patch.
src/diagnostics/Debug.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
     /**
127 127
      * Returns the Dumper in use.
128 128
      *
129
-     * @return  interfaces\Dumper|callable
129
+     * @return  interfaces\Dumper
130 130
      */
131 131
     public static function getDumper() : interfaces\Dumper
132 132
     {
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
     /**
180 180
      * Returns a default variable dumper to be used by self::dump() if no other has been set.
181 181
      *
182
-     * @return  interfaces\Dumper|callable  $dumper
182
+     * @return  string  $dumper
183 183
      */
184 184
     protected static function getDefaultDumper()
185 185
     {
Please login to merge, or discard this patch.