Passed
Push — master ( 43d842...ad5c5d )
by Vladimir
03:44
created
src/Channels/Exceptions/InvalidChannelRequest.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\Channels\Exceptions;
6 6
 
Please login to merge, or discard this patch.
src/Channels/Exceptions/InvalidConfiguration.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\Channels\Exceptions;
6 6
 
Please login to merge, or discard this patch.
src/Channels/ChannelManager.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\Channels;
6 6
 
Please login to merge, or discard this patch.
src/Conversation/Keyboard.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\Conversation;
6 6
 
Please login to merge, or discard this patch.
src/Bot.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -187,7 +187,7 @@
 block discarded – undo
187 187
     /**
188 188
      * Start conversation.
189 189
      *
190
-     * @param Conversable|Intent|Interaction $conversable
190
+     * @param Conversable $conversable
191 191
      */
192 192
     public function converse(Conversable $conversable): void
193 193
     {
Please login to merge, or discard this patch.
Unused Use Statements   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -4,21 +4,21 @@
 block discarded – undo
4 4
 
5 5
 namespace FondBot;
6 6
 
7
-use FondBot\Traits\Loggable;
8 7
 use FondBot\Channels\Channel;
9
-use FondBot\Conversation\Context;
10
-use FondBot\Contracts\Channels\User;
8
+use FondBot\Channels\Exceptions\InvalidChannelRequest;
11 9
 use FondBot\Contracts\Channels\Driver;
12
-use FondBot\Conversation\IntentManager;
13
-use FondBot\Conversation\ContextManager;
14
-use FondBot\Contracts\Container\Container;
15
-use FondBot\Contracts\Conversation\Intent;
16
-use FondBot\Contracts\Conversation\Keyboard;
10
+use FondBot\Contracts\Channels\Extensions\WebhookVerification;
17 11
 use FondBot\Contracts\Channels\OutgoingMessage;
12
+use FondBot\Contracts\Channels\User;
13
+use FondBot\Contracts\Container\Container;
18 14
 use FondBot\Contracts\Conversation\Conversable;
15
+use FondBot\Contracts\Conversation\Intent;
19 16
 use FondBot\Contracts\Conversation\Interaction;
20
-use FondBot\Channels\Exceptions\InvalidChannelRequest;
21
-use FondBot\Contracts\Channels\Extensions\WebhookVerification;
17
+use FondBot\Contracts\Conversation\Keyboard;
18
+use FondBot\Conversation\Context;
19
+use FondBot\Conversation\ContextManager;
20
+use FondBot\Conversation\IntentManager;
21
+use FondBot\Traits\Loggable;
22 22
 
23 23
 class Bot
24 24
 {
Please login to merge, or discard this 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;
6 6
 
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
      *
97 97
      * @return Context|null
98 98
      */
99
-    public function getContext(): ?Context
99
+    public function getContext(): ? Context
100 100
     {
101 101
         return $this->context;
102 102
     }
@@ -216,7 +216,7 @@  discard block
 block discarded – undo
216 216
         string $text,
217 217
         Keyboard $keyboard = null,
218 218
         string $driver = null
219
-    ): ?OutgoingMessage {
219
+    ): ? OutgoingMessage {
220 220
         if ($driver !== null && !$this->driver instanceof $driver) {
221 221
             return null;
222 222
         }
Please login to merge, or discard this patch.
src/Conversation/Fallback/FallbackIntent.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\Conversation\Fallback;
6 6
 
Please login to merge, or discard this patch.
src/Conversation/Intent.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\Conversation;
6 6
 
Please login to merge, or discard this patch.
src/Contracts/Conversation/Intent.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\Contracts\Conversation;
6 6
 
Please login to merge, or discard this patch.
src/Conversation/IntentManager.php 2 patches
Spacing   +2 added lines, -2 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
 
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
      *
23 23
      * @return Intent|null
24 24
      */
25
-    public function find(ReceivedMessage $message): ?Intent
25
+    public function find(ReceivedMessage $message): ? Intent
26 26
     {
27 27
         foreach ($this->intents as $intent) {
28 28
             foreach ($intent->activators() as $activator) {
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,8 +4,8 @@
 block discarded – undo
4 4
 
5 5
 namespace FondBot\Conversation;
6 6
 
7
-use FondBot\Contracts\Conversation\Intent;
8 7
 use FondBot\Contracts\Channels\ReceivedMessage;
8
+use FondBot\Contracts\Conversation\Intent;
9 9
 
10 10
 class IntentManager
11 11
 {
Please login to merge, or discard this patch.