@@ -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); |
@@ -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( |