Completed
Push — master ( 63f743...cd2958 )
by Hiraku
01:37
created
src/Traits/SortTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
     public function usortStable(callable $cmp)
43 43
     {
44 44
         $array = $this->map('[$_, $_i]')->toArray();
45
-        usort($array, static function ($a, $b) use ($cmp) {
45
+        usort($array, static function($a, $b) use ($cmp) {
46 46
             return $cmp($a[0], $b[0]) ?: ($a[1] - $b[1]);
47 47
         });
48 48
         $sorted = new $this($array, $this->debug);
Please login to merge, or discard this patch.