Passed
Push — main ( 0606b0...817763 )
by Breno
01:46
created
src/PriorityTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 
22 22
     public static function sortByPriority(array &$haystack): void
23 23
     {
24
-        uasort($haystack, function ($a, $b) {
24
+        uasort($haystack, function($a, $b) {
25 25
             $prorityOfA = $a instanceof Priority ? $a->getPriority() : 0;
26 26
             $prorityOfB = $b instanceof Priority ? $b->getPriority() : 0;
27 27
 
Please login to merge, or discard this patch.