@@ -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 | |
@@ -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 @@ 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 | } |
@@ -216,7 +216,7 @@ discard block |
||
| 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 | } |
@@ -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 | { |
@@ -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\Traits; |
| 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 | |
@@ -69,7 +69,7 @@ discard block |
||
| 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 |
||
| 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 | { |
@@ -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 | |
@@ -71,7 +71,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 | } |
@@ -4,12 +4,12 @@ |
||
| 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 | { |