@@ -84,7 +84,7 @@ |
||
84 | 84 | } |
85 | 85 | |
86 | 86 | try { |
87 | - $sth = self::$pdo->prepare('INSERT INTO `' . TB_CONVERSATION . '` |
|
87 | + $sth = self::$pdo->prepare('INSERT INTO `' . TB_CONVERSATION . '` |
|
88 | 88 | ( |
89 | 89 | `status`, `user_id`, `chat_id`, `command`, `notes`, `created_at`, `updated_at` |
90 | 90 | ) |
@@ -262,7 +262,7 @@ |
||
262 | 262 | } |
263 | 263 | |
264 | 264 | //Convert each Entity item into an object based on its JSON reflection |
265 | - $json_entities = array_map(function ($entity) { |
|
265 | + $json_entities = array_map(function($entity) { |
|
266 | 266 | return json_decode($entity, true); |
267 | 267 | }, $entities); |
268 | 268 |
@@ -100,11 +100,11 @@ |
||
100 | 100 | |
101 | 101 | $result_object_types = [ |
102 | 102 | 'total_count' => 'UserProfilePhotos', //Response from getUserProfilePhotos |
103 | - 'file_id' => 'File', //Response from getFile |
|
104 | - 'title' => 'Chat', //Response from getChat |
|
105 | - 'username' => 'User', //Response from getMe |
|
106 | - 'user' => 'ChatMember', //Response from getChatMember |
|
107 | - 'url' => 'WebhookInfo', //Response from getWebhookInfo |
|
103 | + 'file_id' => 'File', //Response from getFile |
|
104 | + 'title' => 'Chat', //Response from getChat |
|
105 | + 'username' => 'User', //Response from getMe |
|
106 | + 'user' => 'ChatMember', //Response from getChatMember |
|
107 | + 'url' => 'WebhookInfo', //Response from getWebhookInfo |
|
108 | 108 | ]; |
109 | 109 | foreach ($result_object_types as $type => $object_class) { |
110 | 110 | if (isset($result[$type])) { |
@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | 'first_name' => 'botname', |
158 | 158 | 'username' => 'namebot', |
159 | 159 | ]; |
160 | - $data['chat'] = ['id' => $data['chat_id']]; |
|
160 | + $data['chat'] = ['id' => $data['chat_id']]; |
|
161 | 161 | |
162 | 162 | $fake_response['result'] = $data; |
163 | 163 | } |
@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | $multipart = []; |
182 | 182 | |
183 | 183 | // Convert any nested arrays into JSON strings. |
184 | - array_walk($data, function (&$item) { |
|
184 | + array_walk($data, function(&$item) { |
|
185 | 185 | is_array($item) && $item = json_encode($item); |
186 | 186 | }); |
187 | 187 | |
@@ -812,7 +812,7 @@ discard block |
||
812 | 812 | */ |
813 | 813 | public static function setWebhook($url = '', array $data = []) |
814 | 814 | { |
815 | - $data = array_intersect_key($data, array_flip([ |
|
815 | + $data = array_intersect_key($data, array_flip([ |
|
816 | 816 | 'certificate', |
817 | 817 | 'max_connections', |
818 | 818 | 'allowed_updates', |
@@ -199,8 +199,8 @@ |
||
199 | 199 | public function escapeMarkdown($string) |
200 | 200 | { |
201 | 201 | return str_replace( |
202 | - ['[', '`', '*', '_',], |
|
203 | - ['\[', '\`', '\*', '\_',], |
|
202 | + ['[', '`', '*', '_', ], |
|
203 | + ['\[', '\`', '\*', '\_', ], |
|
204 | 204 | $string |
205 | 205 | ); |
206 | 206 | } |
@@ -908,7 +908,7 @@ discard block |
||
908 | 908 | } |
909 | 909 | |
910 | 910 | $this->run_commands = true; |
911 | - $this->botan_enabled = false; // Force disable Botan.io integration, we don't want to track self-executed commands! |
|
911 | + $this->botan_enabled = false; // Force disable Botan.io integration, we don't want to track self-executed commands! |
|
912 | 912 | |
913 | 913 | $result = Request::getMe()->getResult(); |
914 | 914 | |
@@ -920,8 +920,8 @@ discard block |
||
920 | 920 | $bot_name = $result->getFirstName(); |
921 | 921 | $bot_username = $result->getUsername(); |
922 | 922 | |
923 | - $this->enableAdmin($bot_id); // Give bot access to admin commands |
|
924 | - $this->getCommandsList(); // Load full commands list |
|
923 | + $this->enableAdmin($bot_id); // Give bot access to admin commands |
|
924 | + $this->getCommandsList(); // Load full commands list |
|
925 | 925 | |
926 | 926 | foreach ($commands as $command) { |
927 | 927 | $this->update = new Update( |