@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace FondBot\Toolbelt\Commands; |
6 | 6 | |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | $items = json_decode($response->getBody()->getContents(), true); |
26 | 26 | |
27 | 27 | $drivers = collect($items) |
28 | - ->map(function ($item) { |
|
28 | + ->map(function($item) { |
|
29 | 29 | return [$item['name'], $item['package'], $item['official'] ? '✅' : '❌']; |
30 | 30 | }) |
31 | 31 | ->toArray(); |