@@ -42,7 +42,7 @@ |
||
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); |