@@ -1,6 +1,6 @@ |
||
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 |
@@ -1,6 +1,6 @@ |
||
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 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace FondBot\Channels; |
6 | 6 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace FondBot\Conversation; |
6 | 6 |
@@ -1,6 +1,6 @@ discard block |
||
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 |
||
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 | } |
@@ -187,7 +187,7 @@ |
||
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 | { |
@@ -4,21 +4,21 @@ |
||
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 | { |
@@ -1,6 +1,6 @@ |
||
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 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace FondBot\Conversation; |
6 | 6 |
@@ -1,6 +1,6 @@ |
||
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 |
@@ -1,6 +1,6 @@ discard block |
||
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 |
||
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) { |
@@ -4,8 +4,8 @@ |
||
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 | { |