Completed
Push — 726-games ( e80e55...84647e )
by Armando
03:15
created
src/Commands/AdminCommands/SendtochannelCommand.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,12 +10,12 @@
 block discarded – undo
10 10
 
11 11
 namespace Longman\TelegramBot\Commands\AdminCommands;
12 12
 
13
-use Longman\TelegramBot\Entities\Keyboard;
14
-use Longman\TelegramBot\Request;
15
-use Longman\TelegramBot\Conversation;
16 13
 use Longman\TelegramBot\Commands\AdminCommand;
14
+use Longman\TelegramBot\Conversation;
15
+use Longman\TelegramBot\Entities\Keyboard;
17 16
 use Longman\TelegramBot\Entities\Message;
18 17
 use Longman\TelegramBot\Exception\TelegramException;
18
+use Longman\TelegramBot\Request;
19 19
 
20 20
 class SendtochannelCommand extends AdminCommand
21 21
 {
Please login to merge, or discard this patch.
src/Entities/InlineKeyboardButton.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,13 +46,13 @@
 block discarded – undo
46 46
     {
47 47
         return is_array($data) &&
48 48
                array_key_exists('text', $data) && (
49
-                   array_key_exists('url', $data) ||
49
+                    array_key_exists('url', $data) ||
50 50
                    array_key_exists('callback_data', $data) ||
51 51
                    array_key_exists('switch_inline_query', $data) ||
52 52
                    array_key_exists('switch_inline_query_current_chat', $data) ||
53 53
                    array_key_exists('callback_game', $data) ||
54 54
                    array_key_exists('pay', $data)
55
-               );
55
+                );
56 56
     }
57 57
 
58 58
     /**
Please login to merge, or discard this patch.
src/Telegram.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -856,7 +856,7 @@
 block discarded – undo
856 856
     protected function ucfirstUnicode($str, $encoding = 'UTF-8')
857 857
     {
858 858
         return mb_strtoupper(mb_substr($str, 0, 1, $encoding), $encoding)
859
-               . mb_strtolower(mb_substr($str, 1, mb_strlen($str), $encoding), $encoding);
859
+                . mb_strtolower(mb_substr($str, 1, mb_strlen($str), $encoding), $encoding);
860 860
     }
861 861
 
862 862
     /**
Please login to merge, or discard this patch.