@@ -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; |
6 | 6 | |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | public function handle(ChannelManager $manager): void |
16 | 16 | { |
17 | 17 | $rows = collect($manager->all()) |
18 | - ->transform(function ($item, $name) use ($manager) { |
|
18 | + ->transform(function($item, $name) use ($manager) { |
|
19 | 19 | return [$name, $manager->driver($item['driver'])->getName(), $manager->create($name)->getWebhookUrl()]; |
20 | 20 | }) |
21 | 21 | ->toArray(); |
@@ -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\Drivers; |
6 | 6 | |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | */ |
21 | 21 | public static function createFromTemplate($templates) |
22 | 22 | { |
23 | - $callback = function (Template $template) { |
|
23 | + $callback = function(Template $template) { |
|
24 | 24 | $to = static::class; |
25 | 25 | |
26 | 26 | return $to::create($template); |
@@ -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\Channels\Exceptions; |
6 | 6 |
@@ -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\Conversation; |
6 | 6 |