Completed
Push — master ( ad5c5d...817c3d )
by Vladimir
03:24
created
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.
src/Conversation/Traits/SendsMessages.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\Traits;
6 6
 
Please login to merge, or discard this patch.
src/Contracts/Conversation/Interaction.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/Context.php 3 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
     /**
70 70
      * Get current intent instance.
71 71
      *
72
-     * @return Intent|Conversable|null
72
+     * @return null|Intent
73 73
      */
74 74
     public function getIntent(): ?Intent
75 75
     {
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
     /**
90 90
      * Get current interaction instance.
91 91
      *
92
-     * @return Interaction|Conversable|null
92
+     * @return null|Interaction
93 93
      */
94 94
     public function getInteraction(): ?Interaction
95 95
     {
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 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
 
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
      *
72 72
      * @return Intent|Conversable|null
73 73
      */
74
-    public function getIntent(): ?Intent
74
+    public function getIntent(): ? Intent
75 75
     {
76 76
         return $this->intent;
77 77
     }
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
      *
92 92
      * @return Interaction|Conversable|null
93 93
      */
94
-    public function getInteraction(): ?Interaction
94
+    public function getInteraction(): ? Interaction
95 95
     {
96 96
         return $this->interaction;
97 97
     }
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
      *
102 102
      * @param Interaction|null $interaction
103 103
      */
104
-    public function setInteraction(?Interaction $interaction): void
104
+    public function setInteraction(? Interaction $interaction) : void
105 105
     {
106 106
         $this->interaction = $interaction;
107 107
     }
Please login to merge, or discard this patch.
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -4,12 +4,12 @@
 block discarded – undo
4 4
 
5 5
 namespace FondBot\Conversation;
6 6
 
7
-use FondBot\Contracts\Channels\User;
8
-use FondBot\Contracts\Core\Arrayable;
9
-use FondBot\Contracts\Conversation\Intent;
10 7
 use FondBot\Contracts\Channels\ReceivedMessage;
8
+use FondBot\Contracts\Channels\User;
11 9
 use FondBot\Contracts\Conversation\Conversable;
10
+use FondBot\Contracts\Conversation\Intent;
12 11
 use FondBot\Contracts\Conversation\Interaction;
12
+use FondBot\Contracts\Core\Arrayable;
13 13
 
14 14
 class Context implements Arrayable
15 15
 {
Please login to merge, or discard this patch.