Test Failed
Push — master ( 9f74aa...07ad4e )
by Claudio
02:55 queued 12s
created
src/Sorter/Asc.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
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
         );
Please login to merge, or discard this patch.
src/Sorter/Key.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
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
         );
Please login to merge, or discard this patch.