@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | */ |
| 34 | 34 | protected function registerConversationManager(): void |
| 35 | 35 | { |
| 36 | - $this->app->singleton(ConversationManagerContract::class, function () { |
|
| 36 | + $this->app->singleton(ConversationManagerContract::class, function() { |
|
| 37 | 37 | return new ConversationManager($this->app, $this->app[CacheRepository::class]); |
| 38 | 38 | }); |
| 39 | 39 | |
@@ -45,8 +45,8 @@ discard block |
||
| 45 | 45 | */ |
| 46 | 46 | protected function registerChannelManager(): void |
| 47 | 47 | { |
| 48 | - $this->app->singleton(ChannelManagerContract::class, function () { |
|
| 49 | - $channels = collect(config('fondbot.channels'))->mapWithKeys(function (array $parameters, string $name) { |
|
| 48 | + $this->app->singleton(ChannelManagerContract::class, function() { |
|
| 49 | + $channels = collect(config('fondbot.channels'))->mapWithKeys(function(array $parameters, string $name) { |
|
| 50 | 50 | return [$name => $parameters]; |
| 51 | 51 | }); |
| 52 | 52 | |