@@ -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) { |
@@ -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 | |
@@ -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\Drivers\User; |
|
| 8 | -use FondBot\Contracts\Conversation\Intent; |
|
| 9 | -use FondBot\Contracts\Drivers\ReceivedMessage; |
|
| 7 | +use FondBot\Contracts\Conversation\Context as ContextContract; |
|
| 10 | 8 | use FondBot\Contracts\Conversation\Conversable; |
| 9 | +use FondBot\Contracts\Conversation\Intent; |
|
| 11 | 10 | use FondBot\Contracts\Conversation\Interaction; |
| 12 | -use FondBot\Contracts\Conversation\Context as ContextContract; |
|
| 11 | +use FondBot\Contracts\Drivers\ReceivedMessage; |
|
| 12 | +use FondBot\Contracts\Drivers\User; |
|
| 13 | 13 | |
| 14 | 14 | class Context implements ContextContract |
| 15 | 15 | { |
@@ -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\Buttons; |
| 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\Buttons; |
| 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\Buttons; |
| 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\Drivers; |
| 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\Drivers; |
| 6 | 6 | |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | */ |
| 55 | 55 | private function validateParameters(Channel $channel, Driver $driver): void |
| 56 | 56 | { |
| 57 | - collect($driver->getConfig())->each(function (string $parameter) use ($channel) { |
|
| 57 | + collect($driver->getConfig())->each(function(string $parameter) use ($channel) { |
|
| 58 | 58 | if (!array_key_exists($parameter, $channel->getParameters())) { |
| 59 | 59 | throw new InvalidConfiguration('Invalid `'.$channel->getName().'` channel configuration.'); |
| 60 | 60 | } |
@@ -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 | |