@@ -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\Drivers\User; |
|
11 | -use FondBot\Contracts\Drivers\Driver; |
|
12 | -use FondBot\Conversation\IntentManager; |
|
13 | -use FondBot\Conversation\ContextManager; |
|
14 | 8 | use FondBot\Contracts\Container\Container; |
15 | -use FondBot\Contracts\Conversation\Intent; |
|
16 | -use FondBot\Contracts\Conversation\Keyboard; |
|
17 | -use FondBot\Contracts\Drivers\OutgoingMessage; |
|
18 | 9 | use FondBot\Contracts\Conversation\Conversable; |
10 | +use FondBot\Contracts\Conversation\Intent; |
|
19 | 11 | use FondBot\Contracts\Conversation\Interaction; |
20 | -use FondBot\Contracts\Drivers\InvalidRequest; |
|
12 | +use FondBot\Contracts\Conversation\Keyboard; |
|
13 | +use FondBot\Contracts\Drivers\Driver; |
|
21 | 14 | use FondBot\Contracts\Drivers\Extensions\WebhookVerification; |
15 | +use FondBot\Contracts\Drivers\InvalidRequest; |
|
16 | +use FondBot\Contracts\Drivers\OutgoingMessage; |
|
17 | +use FondBot\Contracts\Drivers\User; |
|
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 | { |
@@ -4,12 +4,12 @@ |
||
4 | 4 | |
5 | 5 | namespace FondBot\Conversation; |
6 | 6 | |
7 | -use FondBot\Contracts\Drivers\User; |
|
8 | -use FondBot\Contracts\Core\Arrayable; |
|
9 | -use FondBot\Contracts\Conversation\Intent; |
|
10 | -use FondBot\Contracts\Drivers\ReceivedMessage; |
|
11 | 7 | use FondBot\Contracts\Conversation\Conversable; |
8 | +use FondBot\Contracts\Conversation\Intent; |
|
12 | 9 | use FondBot\Contracts\Conversation\Interaction; |
10 | +use FondBot\Contracts\Core\Arrayable; |
|
11 | +use FondBot\Contracts\Drivers\ReceivedMessage; |
|
12 | +use FondBot\Contracts\Drivers\User; |
|
13 | 13 | |
14 | 14 | class Context implements Arrayable |
15 | 15 | { |