@@ -787,7 +787,7 @@ discard block |
||
| 787 | 787 | throw new TelegramException('Hook url is empty!'); |
| 788 | 788 | } |
| 789 | 789 | |
| 790 | - $data = array_intersect_key($data, array_flip([ |
|
| 790 | + $data = array_intersect_key($data, array_flip([ |
|
| 791 | 791 | 'certificate', |
| 792 | 792 | 'max_connections', |
| 793 | 793 | 'allowed_updates', |
@@ -902,7 +902,7 @@ discard block |
||
| 902 | 902 | } |
| 903 | 903 | |
| 904 | 904 | $this->run_commands = true; |
| 905 | - $this->botan_enabled = false; // Force disable Botan.io integration, we don't want to track self-executed commands! |
|
| 905 | + $this->botan_enabled = false; // Force disable Botan.io integration, we don't want to track self-executed commands! |
|
| 906 | 906 | |
| 907 | 907 | $result = Request::getMe(); |
| 908 | 908 | |
@@ -919,8 +919,8 @@ discard block |
||
| 919 | 919 | } |
| 920 | 920 | |
| 921 | 921 | |
| 922 | - $this->enableAdmin($bot_id); // Give bot access to admin commands |
|
| 923 | - $this->getCommandsList(); // Load full commands list |
|
| 922 | + $this->enableAdmin($bot_id); // Give bot access to admin commands |
|
| 923 | + $this->getCommandsList(); // Load full commands list |
|
| 924 | 924 | |
| 925 | 925 | foreach ($commands as $command) { |
| 926 | 926 | $this->update = new Update( |
@@ -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 |