@@ -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\Channels; |
6 | 6 | |
@@ -16,10 +16,10 @@ discard block |
||
16 | 16 | */ |
17 | 17 | public function register(): void |
18 | 18 | { |
19 | - $this->app->singleton(ChannelManager::class, function () { |
|
19 | + $this->app->singleton(ChannelManager::class, function() { |
|
20 | 20 | /** @var array $channels */ |
21 | 21 | $channels = collect($this->config()) |
22 | - ->mapWithKeys(function (array $parameters, string $name) { |
|
22 | + ->mapWithKeys(function(array $parameters, string $name) { |
|
23 | 23 | return [$name => $parameters]; |
24 | 24 | }) |
25 | 25 | ->toArray(); |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace FondBot\Foundation; |
6 | 6 |