Completed
Push — master ( a27875...046cf9 )
by Vladimir
06:05
created
src/Foundation/Listeners/HandleConversation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace FondBot\Foundation\Listeners;
6 6
 
Please login to merge, or discard this patch.
src/Conversation/ConversationServiceProvider.php 1 patch
Spacing   +3 added lines, -3 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\Conversation;
6 6
 
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 
24 24
     private function registerSessionManager(): void
25 25
     {
26
-        $this->app->singleton(SessionManager::class, function () {
26
+        $this->app->singleton(SessionManager::class, function() {
27 27
             return new SessionManager(
28 28
                 $this->app,
29 29
                 $this->app->make(Store::class)
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 
34 34
     private function registerIntentManager(): void
35 35
     {
36
-        $this->app->singleton(IntentManager::class, function () {
36
+        $this->app->singleton(IntentManager::class, function() {
37 37
             $intents = array_get($this->config(), 'intents', []);
38 38
             $fallbackIntent = array_get($this->config(), 'fallback_intent', FallbackIntent::class);
39 39
 
Please login to merge, or discard this patch.
src/Foundation/Commands/SendRequest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace FondBot\Foundation\Commands;
6 6
 
Please login to merge, or discard this patch.
src/Foundation/Commands/SendMessage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace FondBot\Foundation\Commands;
6 6
 
Please login to merge, or discard this patch.
src/Foundation/Commands/RestartConversation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace FondBot\Foundation\Commands;
6 6
 
Please login to merge, or discard this patch.
src/Foundation/Commands/SendAttachment.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace FondBot\Foundation\Commands;
6 6
 
Please login to merge, or discard this patch.
src/Foundation/ServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace FondBot\Foundation;
6 6
 
Please login to merge, or discard this patch.
src/Events/EventServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace FondBot\Events;
6 6
 
Please login to merge, or discard this patch.
src/Channels/ChannelServiceProvider.php 1 patch
Spacing   +3 added lines, -3 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
 
@@ -16,10 +16,10 @@  discard block
 block discarded – undo
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();
Please login to merge, or discard this patch.