Completed
Push — master ( f5244f...96e614 )
by Vladimir
02:50
created
src/Toolbelt/Commands/ListChannels.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
         $manager = $this->kernel->resolve(ChannelManager::class);
29 29
 
30 30
         $channels = collect($manager->all())
31
-            ->map(function ($item, $name) {
31
+            ->map(function($item, $name) {
32 32
                 return [$name, $item['driver'], '/channels/'.$name];
33 33
             })
34 34
             ->toArray();
Please login to merge, or discard this patch.