Passed
Push — master ( 4cec5a...15677b )
by Vladimir
02:47
created
src/Bot.php 1 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.
src/Channels/Telegram/TelegramOutgoingMessage.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,9 +4,9 @@
 block discarded – undo
4 4
 
5 5
 namespace FondBot\Channels\Telegram;
6 6
 
7
+use FondBot\Contracts\Channels\OutgoingMessage;
7 8
 use FondBot\Contracts\Channels\User;
8 9
 use FondBot\Contracts\Conversation\Keyboard;
9
-use FondBot\Contracts\Channels\OutgoingMessage;
10 10
 
11 11
 class TelegramOutgoingMessage implements OutgoingMessage
12 12
 {
Please login to merge, or discard this patch.
src/Conversation/Context.php 1 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.
src/Conversation/IntentManager.php 1 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.