@@ -8,7 +8,7 @@ |
||
| 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 | |