@@ -22,7 +22,7 @@ |
||
22 | 22 | $comparable = $this->comparable; |
23 | 23 | uasort( |
24 | 24 | $values, |
25 | - static function (mixed $first, mixed $second) use ($comparable): int { |
|
25 | + static function(mixed $first, mixed $second) use ($comparable): int { |
|
26 | 26 | return $comparable->compare($first, $second); |
27 | 27 | } |
28 | 28 | ); |
@@ -22,7 +22,7 @@ |
||
22 | 22 | $comparable = $this->comparable; |
23 | 23 | uksort( |
24 | 24 | $values, |
25 | - static function (mixed $first, mixed $second) use ($comparable): int { |
|
25 | + static function(mixed $first, mixed $second) use ($comparable): int { |
|
26 | 26 | return $comparable->compare($first, $second); |
27 | 27 | } |
28 | 28 | ); |