Passed
Push — main ( fdf1e0...11848c )
by Breno
01:54
created
src/Priority.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
 
29 29
     public static function sortByPriority(array &$haystack): void
30 30
     {
31
-        uasort($haystack, function ($a, $b) {
31
+        uasort($haystack, function($a, $b) {
32 32
             $prorityOfA = $a instanceof Prioritable ? $a->getPriority() : Prioritable::LOWEST_PRIORITY;
33 33
             $prorityOfB = $b instanceof Prioritable ? $b->getPriority() : Prioritable::LOWEST_PRIORITY;
34 34
 
Please login to merge, or discard this patch.