Completed
Branch master (203d4a)
by Avtandil
06:25
created
examples/Commands/MarkdownCommand.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 
13 13
 use Longman\TelegramBot\Commands\UserCommand;
14 14
 use Longman\TelegramBot\Request;
15
-use Longman\TelegramBot\Entities\ReplyKeyboardMarkup;
16 15
 
17 16
 /**
18 17
  * User "/markdown" command
Please login to merge, or discard this patch.
src/Commands/AdminCommands/SendtochannelCommand.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use Longman\TelegramBot\Conversation;
15 15
 use Longman\TelegramBot\Commands\AdminCommand;
16 16
 use Longman\TelegramBot\Entities\Message;
17
-use Longman\TelegramBot\Entities\ReplyKeyboardHide;
18 17
 use Longman\TelegramBot\Entities\ReplyKeyboardMarkup;
19 18
 use Longman\TelegramBot\Exception\TelegramException;
20 19
 
Please login to merge, or discard this patch.
src/Commands/UserCommands/SurveyCommand.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use Longman\TelegramBot\Conversation;
15 15
 use Longman\TelegramBot\Commands\UserCommand;
16 16
 use Longman\TelegramBot\Entities\ForceReply;
17
-use Longman\TelegramBot\Entities\ReplyKeyboardHide;
18 17
 use Longman\TelegramBot\Entities\ReplyKeyboardMarkup;
19 18
 
20 19
 /**
Please login to merge, or discard this patch.
src/Commands/UserCommands/WhoamiCommand.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
 namespace Longman\TelegramBot\Commands\UserCommands;
14 14
 
15 15
 use Longman\TelegramBot\Commands\UserCommand;
16
-use Longman\TelegramBot\Entities\File;
17 16
 use Longman\TelegramBot\Request;
18 17
 
19 18
 /**
Please login to merge, or discard this patch.
src/Entities/Sticker.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -62,26 +62,26 @@
 block discarded – undo
62 62
 
63 63
     public function getWidth()
64 64
     {
65
-         return $this->width;
65
+            return $this->width;
66 66
     }
67 67
 
68 68
     public function getHeight()
69 69
     {
70
-         return $this->height;
70
+            return $this->height;
71 71
     }
72 72
 
73 73
     public function getThumb()
74 74
     {
75
-         return $this->thumb;
75
+            return $this->thumb;
76 76
     }
77 77
 
78 78
     public function getEmoji()
79 79
     {
80
-         return $this->emoji;
80
+            return $this->emoji;
81 81
     }
82 82
 
83 83
     public function getFileSize()
84 84
     {
85
-         return $this->file_size;
85
+            return $this->file_size;
86 86
     }
87 87
 }
Please login to merge, or discard this patch.
src/Entities/Audio.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 
53 53
     public function getDuration()
54 54
     {
55
-         return $this->duration;
55
+            return $this->duration;
56 56
     }
57 57
 
58 58
     public function getPerformer()
@@ -67,11 +67,11 @@  discard block
 block discarded – undo
67 67
 
68 68
     public function getMimeType()
69 69
     {
70
-         return $this->mime_type;
70
+            return $this->mime_type;
71 71
     }
72 72
 
73 73
     public function getFileSize()
74 74
     {
75
-         return $this->file_size;
75
+            return $this->file_size;
76 76
     }
77 77
 }
Please login to merge, or discard this patch.
src/Entities/Video.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -65,27 +65,27 @@
 block discarded – undo
65 65
 
66 66
     public function getWidth()
67 67
     {
68
-         return $this->width;
68
+            return $this->width;
69 69
     }
70 70
 
71 71
     public function getHeight()
72 72
     {
73
-         return $this->height;
73
+            return $this->height;
74 74
     }
75 75
     public function getDuration()
76 76
     {
77
-         return $this->duration;
77
+            return $this->duration;
78 78
     }
79 79
     public function getThumb()
80 80
     {
81
-         return $this->thumb;
81
+            return $this->thumb;
82 82
     }
83 83
     public function getMimeType()
84 84
     {
85
-         return $this->mime_type;
85
+            return $this->mime_type;
86 86
     }
87 87
     public function getFileSize()
88 88
     {
89
-         return $this->file_size;
89
+            return $this->file_size;
90 90
     }
91 91
 }
Please login to merge, or discard this patch.
src/Entities/Voice.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -47,16 +47,16 @@
 block discarded – undo
47 47
 
48 48
     public function getDuration()
49 49
     {
50
-         return $this->duration;
50
+            return $this->duration;
51 51
     }
52 52
 
53 53
     public function getMimeType()
54 54
     {
55
-         return $this->mime_type;
55
+            return $this->mime_type;
56 56
     }
57 57
 
58 58
     public function getFileSize()
59 59
     {
60
-         return $this->file_size;
60
+            return $this->file_size;
61 61
     }
62 62
 }
Please login to merge, or discard this patch.
src/Entities/PhotoSize.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -53,16 +53,16 @@
 block discarded – undo
53 53
 
54 54
     public function getWidth()
55 55
     {
56
-         return $this->width;
56
+            return $this->width;
57 57
     }
58 58
 
59 59
     public function getHeight()
60 60
     {
61
-         return $this->height;
61
+            return $this->height;
62 62
     }
63 63
 
64 64
     public function getFileSize()
65 65
     {
66
-         return $this->file_size;
66
+            return $this->file_size;
67 67
     }
68 68
 }
Please login to merge, or discard this patch.