@@ -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 |
@@ -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 |
@@ -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, |
@@ -49,14 +49,14 @@ |
||
49 | 49 | { |
50 | 50 | return is_array($data) && |
51 | 51 | array_key_exists('text', $data) && ( |
52 | - array_key_exists('url', $data) || |
|
52 | + array_key_exists('url', $data) || |
|
53 | 53 | array_key_exists('login_url', $data) || |
54 | 54 | array_key_exists('callback_data', $data) || |
55 | 55 | array_key_exists('switch_inline_query', $data) || |
56 | 56 | array_key_exists('switch_inline_query_current_chat', $data) || |
57 | 57 | array_key_exists('callback_game', $data) || |
58 | 58 | array_key_exists('pay', $data) |
59 | - ); |
|
59 | + ); |
|
60 | 60 | } |
61 | 61 | |
62 | 62 | /** |
@@ -281,7 +281,7 @@ |
||
281 | 281 | { |
282 | 282 | // Get the correct logger instance. |
283 | 283 | $logger = null; |
284 | - if (in_array($name, ['emergency', 'alert', 'critical', 'error', 'warning', 'notice', 'info', 'debug',], true)) { |
|
284 | + if (in_array($name, ['emergency', 'alert', 'critical', 'error', 'warning', 'notice', 'info', 'debug', ], true)) { |
|
285 | 285 | $logger = self::$logger; |
286 | 286 | } elseif ($name === 'update') { |
287 | 287 | $logger = self::$update_logger; |
@@ -42,7 +42,7 @@ |
||
42 | 42 | |
43 | 43 | if ($these_photos = $this->getProperty('photos')) { |
44 | 44 | foreach ($these_photos as $photos) { |
45 | - $all_photos[] = array_map(function ($photo) { |
|
45 | + $all_photos[] = array_map(function($photo) { |
|
46 | 46 | return new PhotoSize($photo); |
47 | 47 | }, $photos); |
48 | 48 | } |
@@ -338,7 +338,7 @@ discard block |
||
338 | 338 | 'first_name' => 'botname', |
339 | 339 | 'username' => 'namebot', |
340 | 340 | ]; |
341 | - $data['chat'] = ['id' => $data['chat_id']]; |
|
341 | + $data['chat'] = ['id' => $data['chat_id']]; |
|
342 | 342 | |
343 | 343 | $fake_response['result'] = $data; |
344 | 344 | } |
@@ -491,7 +491,7 @@ discard block |
||
491 | 491 | '/bot' . self::$telegram->getApiKey() . '/' . $action, |
492 | 492 | $request_params |
493 | 493 | ); |
494 | - $result = (string) $response->getBody(); |
|
494 | + $result = (string) $response->getBody(); |
|
495 | 495 | |
496 | 496 | //Logging getUpdates Update |
497 | 497 | if ($action === 'getUpdates') { |
@@ -844,9 +844,9 @@ discard block |
||
844 | 844 | // Make sure we're handling integers here. |
845 | 845 | $requests = array_map('intval', $requests); |
846 | 846 | |
847 | - $chat_per_second = ($requests['LIMIT_PER_SEC'] === 0); // No more than one message per second inside a particular chat |
|
847 | + $chat_per_second = ($requests['LIMIT_PER_SEC'] === 0); // No more than one message per second inside a particular chat |
|
848 | 848 | $global_per_second = ($requests['LIMIT_PER_SEC_ALL'] < 30); // No more than 30 messages per second to different chats |
849 | - $groups_per_minute = (((is_numeric($chat_id) && $chat_id > 0) || $inline_message_id !== null) || ((!is_numeric($chat_id) || $chat_id < 0) && $requests['LIMIT_PER_MINUTE'] < 20)); // No more than 20 messages per minute in groups and channels |
|
849 | + $groups_per_minute = (((is_numeric($chat_id) && $chat_id > 0) || $inline_message_id !== null) || ((!is_numeric($chat_id) || $chat_id < 0) && $requests['LIMIT_PER_MINUTE'] < 20)); // No more than 20 messages per minute in groups and channels |
|
850 | 850 | |
851 | 851 | if ($chat_per_second && $global_per_second && $groups_per_minute) { |
852 | 852 | break; |
@@ -122,7 +122,7 @@ |
||
122 | 122 | } |
123 | 123 | |
124 | 124 | // Convert numeric-only values to days. |
125 | - array_walk($clean_older_than, function (&$time) use ($custom_time) { |
|
125 | + array_walk($clean_older_than, function(&$time) use ($custom_time) { |
|
126 | 126 | if (!empty($custom_time)) { |
127 | 127 | $time = $custom_time; |
128 | 128 | } |
@@ -204,8 +204,8 @@ |
||
204 | 204 | public static function escapeMarkdown($string) |
205 | 205 | { |
206 | 206 | return str_replace( |
207 | - ['[', '`', '*', '_',], |
|
208 | - ['\[', '\`', '\*', '\_',], |
|
207 | + ['[', '`', '*', '_', ], |
|
208 | + ['\[', '\`', '\*', '\_', ], |
|
209 | 209 | $string |
210 | 210 | ); |
211 | 211 | } |