Completed
Push — master ( dd8acb...350d73 )
by Vladimir
03:11 queued 01:18
created
src/FondBotServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.