@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | 'symfony-messenger-bridge' => 'Symfony Messenger Bridge', |
47 | 47 | ]; |
48 | 48 | $types = array_keys($typeOrder); |
49 | - usort($packages, function ($a, $b) use ($types) { |
|
49 | + usort($packages, function($a, $b) use ($types) { |
|
50 | 50 | $typeOrder = array_search($a['type'], $types) - array_search($b['type'], $types); |
51 | 51 | if (0 !== $typeOrder) { |
52 | 52 | return $typeOrder; |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | } |
99 | 99 | $tmp[] = $author['name']; |
100 | 100 | } |
101 | - usort($authors, function ($a, $b) { |
|
101 | + usort($authors, function($a, $b) { |
|
102 | 102 | return strcmp($a['name'], $b['name']); |
103 | 103 | }); |
104 | 104 | foreach ($authors as $author) { |