Completed
Push — master ( 14b2a6...a04653 )
by Vladimir
02:16
created
src/Channels/ChannelManager.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\Channels;
6 6
 
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
      */
55 55
     public function getByDriver(string $driver): Collection
56 56
     {
57
-        return $this->channels->filter(function (array $channel) use ($driver) {
57
+        return $this->channels->filter(function(array $channel) use ($driver) {
58 58
             return $channel['driver'] === $driver;
59 59
         });
60 60
     }
Please login to merge, or discard this patch.