@@ -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() |
@@ -128,7 +128,7 @@ |
||
128 | 128 | $notes['state'] = 0; |
129 | 129 | $this->conversation->update(); |
130 | 130 | |
131 | - $keyboard = array_map(function ($channel) { |
|
131 | + $keyboard = array_map(function($channel) { |
|
132 | 132 | return [$channel]; |
133 | 133 | }, $channels); |
134 | 134 |
@@ -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) |
@@ -260,7 +260,7 @@ discard block |
||
260 | 260 | 'first_name' => 'botname', |
261 | 261 | 'username' => 'namebot', |
262 | 262 | ]; |
263 | - $data['chat'] = ['id' => $data['chat_id']]; |
|
263 | + $data['chat'] = ['id' => $data['chat_id']]; |
|
264 | 264 | |
265 | 265 | $fake_response['result'] = $data; |
266 | 266 | } |
@@ -284,14 +284,14 @@ discard block |
||
284 | 284 | $multipart = []; |
285 | 285 | |
286 | 286 | // Convert any nested arrays into JSON strings. |
287 | - array_walk($data, function (&$item) { |
|
287 | + array_walk($data, function(&$item) { |
|
288 | 288 | is_array($item) && $item = json_encode($item); |
289 | 289 | }); |
290 | 290 | |
291 | 291 | //Reformat data array in multipart way if it contains a resource |
292 | 292 | foreach ($data as $key => $item) { |
293 | 293 | $has_resource |= (is_resource($item) || $item instanceof \GuzzleHttp\Psr7\Stream); |
294 | - $multipart[] = ['name' => $key, 'contents' => $item]; |
|
294 | + $multipart[] = ['name' => $key, 'contents' => $item]; |
|
295 | 295 | } |
296 | 296 | if ($has_resource) { |
297 | 297 | return ['multipart' => $multipart]; |
@@ -325,7 +325,7 @@ discard block |
||
325 | 325 | '/bot' . self::$telegram->getApiKey() . '/' . $action, |
326 | 326 | $request_params |
327 | 327 | ); |
328 | - $result = (string) $response->getBody(); |
|
328 | + $result = (string) $response->getBody(); |
|
329 | 329 | |
330 | 330 | //Logging getUpdates Update |
331 | 331 | if ($action === 'getUpdates') { |
@@ -651,8 +651,8 @@ discard block |
||
651 | 651 | $requests = DB::getTelegramRequestCount($chat_id, $inline_message_id); |
652 | 652 | |
653 | 653 | $chat_per_second = ($requests['LIMIT_PER_SEC'] == 0); // No more than one message per second inside a particular chat |
654 | - $global_per_second = ($requests['LIMIT_PER_SEC_ALL'] < 30); // No more than 30 messages per second to different chats |
|
655 | - $groups_per_minute = (((is_numeric($chat_id) && $chat_id > 0) || !is_null($inline_message_id)) || ((!is_numeric($chat_id) || $chat_id < 0) && $requests['LIMIT_PER_MINUTE'] < 20)); // No more than 20 messages per minute in groups and channels |
|
654 | + $global_per_second = ($requests['LIMIT_PER_SEC_ALL'] < 30); // No more than 30 messages per second to different chats |
|
655 | + $groups_per_minute = (((is_numeric($chat_id) && $chat_id > 0) || !is_null($inline_message_id)) || ((!is_numeric($chat_id) || $chat_id < 0) && $requests['LIMIT_PER_MINUTE'] < 20)); // No more than 20 messages per minute in groups and channels |
|
656 | 656 | |
657 | 657 | if ($chat_per_second && $global_per_second && $groups_per_minute) { |
658 | 658 | break; |
@@ -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 | } |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | } |
102 | 102 | |
103 | 103 | // Convert numeric-only values to days. |
104 | - array_walk($clean_older_than, function (&$time) use ($custom_time) { |
|
104 | + array_walk($clean_older_than, function(&$time) use ($custom_time) { |
|
105 | 105 | if (!empty($custom_time)) { |
106 | 106 | $time = $custom_time; |
107 | 107 | } |
@@ -357,9 +357,9 @@ discard block |
||
357 | 357 | } |
358 | 358 | } |
359 | 359 | |
360 | - $pdo->commit(); // commit changes to the database and end transaction |
|
360 | + $pdo->commit(); // commit changes to the database and end transaction |
|
361 | 361 | } catch (PDOException $e) { |
362 | - $pdo->rollBack(); // rollback changes on exception (useful if you want to track down error - you can't replicate it when some of the data is already deleted...) |
|
362 | + $pdo->rollBack(); // rollback changes on exception (useful if you want to track down error - you can't replicate it when some of the data is already deleted...) |
|
363 | 363 | |
364 | 364 | $data['text'] = '*Database cleanup failed!* _(check your error logs)_'; |
365 | 365 | Request::sendMessage($data); |
@@ -290,7 +290,7 @@ discard block |
||
290 | 290 | } |
291 | 291 | |
292 | 292 | // Convert each Entity item into an object based on its JSON reflection |
293 | - $json_entities = array_map(function ($entity) { |
|
293 | + $json_entities = array_map(function($entity) { |
|
294 | 294 | return json_decode($entity, true); |
295 | 295 | }, $entities); |
296 | 296 | |
@@ -1044,7 +1044,7 @@ discard block |
||
1044 | 1044 | if (null !== $select['text']) { |
1045 | 1045 | $text_like = '%' . strtolower($select['text']) . '%'; |
1046 | 1046 | if ($select['users']) { |
1047 | - $where[] = '( |
|
1047 | + $where[] = '( |
|
1048 | 1048 | LOWER(' . TB_CHAT . '.`title`) LIKE :text1 |
1049 | 1049 | OR LOWER(' . TB_USER . '.`first_name`) LIKE :text2 |
1050 | 1050 | OR LOWER(' . TB_USER . '.`last_name`) LIKE :text3 |
@@ -46,13 +46,13 @@ |
||
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 | /** |
@@ -856,7 +856,7 @@ |
||
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 | /** |
@@ -360,7 +360,7 @@ discard block |
||
360 | 360 | } |
361 | 361 | |
362 | 362 | if ($this->last_update_id !== null) { |
363 | - $offset = $this->last_update_id + 1; //As explained in the telegram bot API documentation |
|
363 | + $offset = $this->last_update_id + 1; //As explained in the telegram bot API documentation |
|
364 | 364 | } |
365 | 365 | |
366 | 366 | $response = Request::getUpdates( |
@@ -833,7 +833,7 @@ discard block |
||
833 | 833 | throw new TelegramException('Hook url is empty!'); |
834 | 834 | } |
835 | 835 | |
836 | - $data = array_intersect_key($data, array_flip([ |
|
836 | + $data = array_intersect_key($data, array_flip([ |
|
837 | 837 | 'certificate', |
838 | 838 | 'max_connections', |
839 | 839 | 'allowed_updates', |
@@ -947,7 +947,7 @@ discard block |
||
947 | 947 | } |
948 | 948 | |
949 | 949 | $this->run_commands = true; |
950 | - $this->botan_enabled = false; // Force disable Botan.io integration, we don't want to track self-executed commands! |
|
950 | + $this->botan_enabled = false; // Force disable Botan.io integration, we don't want to track self-executed commands! |
|
951 | 951 | |
952 | 952 | $result = Request::getMe(); |
953 | 953 | |
@@ -964,8 +964,8 @@ discard block |
||
964 | 964 | } |
965 | 965 | |
966 | 966 | |
967 | - $this->enableAdmin($bot_id); // Give bot access to admin commands |
|
968 | - $this->getCommandsList(); // Load full commands list |
|
967 | + $this->enableAdmin($bot_id); // Give bot access to admin commands |
|
968 | + $this->getCommandsList(); // Load full commands list |
|
969 | 969 | |
970 | 970 | foreach ($commands as $command) { |
971 | 971 | $this->update = new Update( |
@@ -61,7 +61,7 @@ |
||
61 | 61 | |
62 | 62 | /** @var ServerResponse[] $results */ |
63 | 63 | $results = Request::sendToActiveChats( |
64 | - 'sendMessage', //callback function to execute (see Request.php methods) |
|
64 | + 'sendMessage', //callback function to execute (see Request.php methods) |
|
65 | 65 | ['text' => $text], //Param to evaluate the request |
66 | 66 | [ |
67 | 67 | 'groups' => true, |
@@ -112,12 +112,12 @@ |
||
112 | 112 | |
113 | 113 | $result_object_types = [ |
114 | 114 | 'total_count' => 'UserProfilePhotos', //Response from getUserProfilePhotos |
115 | - 'stickers' => 'StickerSet', //Response from getStickerSet |
|
116 | - 'file_id' => 'File', //Response from getFile |
|
117 | - 'title' => 'Chat', //Response from getChat |
|
118 | - 'username' => 'User', //Response from getMe |
|
119 | - 'user' => 'ChatMember', //Response from getChatMember |
|
120 | - 'url' => 'WebhookInfo', //Response from getWebhookInfo |
|
115 | + 'stickers' => 'StickerSet', //Response from getStickerSet |
|
116 | + 'file_id' => 'File', //Response from getFile |
|
117 | + 'title' => 'Chat', //Response from getChat |
|
118 | + 'username' => 'User', //Response from getMe |
|
119 | + 'user' => 'ChatMember', //Response from getChatMember |
|
120 | + 'url' => 'WebhookInfo', //Response from getWebhookInfo |
|
121 | 121 | ]; |
122 | 122 | foreach ($result_object_types as $type => $object_class) { |
123 | 123 | if (isset($result[$type])) { |