@@ -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 | ) |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | /** |
56 | 56 | * Command execute method |
57 | 57 | * |
58 | - * @return \Longman\TelegramBot\Entities\ServerResponse|mixed |
|
58 | + * @return \Longman\TelegramBot\Entities\ServerResponse |
|
59 | 59 | * @throws \Longman\TelegramBot\Exception\TelegramException |
60 | 60 | */ |
61 | 61 | public function execute() |
@@ -329,7 +329,7 @@ discard block |
||
329 | 329 | * |
330 | 330 | * @todo Why send just to the first found channel? |
331 | 331 | * |
332 | - * @return mixed |
|
332 | + * @return \Longman\TelegramBot\Entities\ServerResponse |
|
333 | 333 | * @throws \Longman\TelegramBot\Exception\TelegramException |
334 | 334 | */ |
335 | 335 | public function executeNoDb() |
@@ -251,7 +251,7 @@ |
||
251 | 251 | * @todo Find a better way, as json_* functions are very heavy |
252 | 252 | * |
253 | 253 | * @param array|null $entities |
254 | - * @param mixed $default |
|
254 | + * @param string|null $default |
|
255 | 255 | * |
256 | 256 | * @return mixed |
257 | 257 | */ |
@@ -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 |
@@ -55,7 +55,7 @@ |
||
55 | 55 | |
56 | 56 | //Only get enabled Admin and User commands |
57 | 57 | /** @var Command[] $command_objs */ |
58 | - $command_objs = array_filter($this->telegram->getCommandsList(), function ($command_obj) { |
|
58 | + $command_objs = array_filter($this->telegram->getCommandsList(), function($command_obj) { |
|
59 | 59 | /** @var Command $command_obj */ |
60 | 60 | return !$command_obj->isSystemCommand() && $command_obj->isEnabled(); |
61 | 61 | }); |
@@ -278,8 +278,8 @@ |
||
278 | 278 | public function stripMarkDown($string) |
279 | 279 | { |
280 | 280 | return str_replace( |
281 | - ['[', '`', '*', '_',], |
|
282 | - ['\[', '\`', '\*', '\_',], |
|
281 | + ['[', '`', '*', '_', ], |
|
282 | + ['\[', '\`', '\*', '\_', ], |
|
283 | 283 | $string |
284 | 284 | ); |
285 | 285 | } |
@@ -238,7 +238,7 @@ |
||
238 | 238 | * |
239 | 239 | * @param \Longman\TelegramBot\Entities\File $file |
240 | 240 | * |
241 | - * @return boolean |
|
241 | + * @return boolean|string |
|
242 | 242 | * @throws \Longman\TelegramBot\Exception\TelegramException |
243 | 243 | */ |
244 | 244 | public static function downloadFile(File $file) |
@@ -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 | } |
@@ -219,7 +219,7 @@ discard block |
||
219 | 219 | '/bot' . self::$telegram->getApiKey() . '/' . $action, |
220 | 220 | $request_params |
221 | 221 | ); |
222 | - $result = (string) $response->getBody(); |
|
222 | + $result = (string) $response->getBody(); |
|
223 | 223 | |
224 | 224 | //Logging getUpdates Update |
225 | 225 | if ($action === 'getUpdates') { |
@@ -809,7 +809,7 @@ discard block |
||
809 | 809 | */ |
810 | 810 | public static function setWebhook($url = '', array $data = []) |
811 | 811 | { |
812 | - $data = array_intersect_key($data, array_flip([ |
|
812 | + $data = array_intersect_key($data, array_flip([ |
|
813 | 813 | 'certificate', |
814 | 814 | 'max_connections', |
815 | 815 | 'allowed_updates', |
@@ -42,11 +42,11 @@ |
||
42 | 42 | { |
43 | 43 | return is_array($data) && |
44 | 44 | array_key_exists('text', $data) && ( |
45 | - array_key_exists('url', $data) || |
|
45 | + array_key_exists('url', $data) || |
|
46 | 46 | array_key_exists('callback_data', $data) || |
47 | 47 | array_key_exists('switch_inline_query', $data) || |
48 | 48 | array_key_exists('switch_inline_query_current_chat', $data) |
49 | - ); |
|
49 | + ); |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | /** |
@@ -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() |
@@ -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' => ' ☔', |