@@ -757,7 +757,7 @@ discard block |
||
| 757 | 757 | * |
| 758 | 758 | * This is kept for backwards compatibility! |
| 759 | 759 | * |
| 760 | - * @return mixed |
|
| 760 | + * @return ServerResponse |
|
| 761 | 761 | * @throws \Longman\TelegramBot\Exception\TelegramException |
| 762 | 762 | */ |
| 763 | 763 | public function unsetWebhook() |
@@ -768,7 +768,7 @@ discard block |
||
| 768 | 768 | /** |
| 769 | 769 | * Delete any assigned webhook |
| 770 | 770 | * |
| 771 | - * @return mixed |
|
| 771 | + * @return ServerResponse |
|
| 772 | 772 | * @throws \Longman\TelegramBot\Exception\TelegramException |
| 773 | 773 | */ |
| 774 | 774 | public function deleteWebhook() |
@@ -854,7 +854,7 @@ discard block |
||
| 854 | 854 | throw new TelegramException('No command(s) provided!'); |
| 855 | 855 | } |
| 856 | 856 | |
| 857 | - $this->botan_enabled = false; // Force disable Botan.io integration, we don't want to track self-executed commands! |
|
| 857 | + $this->botan_enabled = false; // Force disable Botan.io integration, we don't want to track self-executed commands! |
|
| 858 | 858 | |
| 859 | 859 | $result = Request::getMe()->getResult(); |
| 860 | 860 | |
@@ -866,8 +866,8 @@ discard block |
||
| 866 | 866 | $bot_name = $result->getFirstName(); |
| 867 | 867 | $bot_username = $result->getUsername(); |
| 868 | 868 | |
| 869 | - $this->enableAdmin($bot_id); // Give bot access to admin commands |
|
| 870 | - $this->getCommandsList(); // Load full commands list |
|
| 869 | + $this->enableAdmin($bot_id); // Give bot access to admin commands |
|
| 870 | + $this->getCommandsList(); // Load full commands list |
|
| 871 | 871 | |
| 872 | 872 | foreach ($commands as $command) { |
| 873 | 873 | $this->update = new Update( |
@@ -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])) { |
@@ -92,7 +92,7 @@ |
||
| 92 | 92 | } |
| 93 | 93 | |
| 94 | 94 | //http://openweathermap.org/weather-conditions |
| 95 | - $conditions = [ |
|
| 95 | + $conditions = [ |
|
| 96 | 96 | 'clear' => ' ☀️', |
| 97 | 97 | 'clouds' => ' ☁️', |
| 98 | 98 | 'rain' => ' ☔', |
@@ -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', |