Passed
Push — main ( 943ab3...d41742 )
by Breno
08:18 queued 06:16
created
src/SortByPriority.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 {
9 9
     protected static function sortByPriority(array &$haystack): void
10 10
     {
11
-        uasort($haystack, function ($a, $b) {
11
+        uasort($haystack, function($a, $b) {
12 12
             $prorityOfA = $a instanceof Prioritable ? $a->getPriority() : Prioritable::LOWEST_PRIORITY;
13 13
             $prorityOfB = $b instanceof Prioritable ? $b->getPriority() : Prioritable::LOWEST_PRIORITY;
14 14
 
Please login to merge, or discard this patch.