Passed
Push — main ( 1e0eff...d761d2 )
by Miaad
01:42
created
src/types/inputMedia.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      * be reused and can be only uploaded as a new file, so you can pass “attach://<file_attach_name>” if the
53 53
      * thumbnail was uploaded using multipart/form-data under <file_attach_name>.
54 54
      */
55
-    public CURLFile|string $thumb;
55
+    public CURLFile | string $thumb;
56 56
 
57 57
     /** `video` and `animation` only. width */
58 58
     public int $width;
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
     public bool $disable_content_type_detection;
80 80
 
81 81
 
82
-    public function __construct(stdClass|null $object = null) {
82
+    public function __construct(stdClass | null $object = null) {
83 83
         if ($object != null) {
84 84
             parent::__construct($object, self::subs);
85 85
         }
Please login to merge, or discard this patch.
src/tools/encrypt.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
      * @return string|bool|array{hash:string, key:string, iv:string}
30 30
      * @throws bptException
31 31
      */
32
-    public static function crypto (string $action, string $text, string $key = null, string $iv = null): bool|array|string {
32
+    public static function crypto(string $action, string $text, string $key = null, string $iv = null): bool | array | string {
33 33
         if (extension_loaded('openssl')) {
34 34
             if ($action === cryptoAction::ENCRYPT) {
35 35
                 $key = self::randomString(64);
@@ -39,22 +39,22 @@  discard block
 block discarded – undo
39 39
             }
40 40
             elseif ($action === cryptoAction::DECRYPT) {
41 41
                 if (empty($key)) {
42
-                    logger::write("tools::crypto function used\nkey parameter is not set",loggerTypes::ERROR);
42
+                    logger::write("tools::crypto function used\nkey parameter is not set", loggerTypes::ERROR);
43 43
                     throw new bptException('ARGUMENT_NOT_FOUND_KEY');
44 44
                 }
45 45
                 elseif (empty($iv)) {
46
-                    logger::write("tools::crypto function used\niv parameter is not set",loggerTypes::ERROR);
46
+                    logger::write("tools::crypto function used\niv parameter is not set", loggerTypes::ERROR);
47 47
                     throw new bptException('ARGUMENT_NOT_FOUND_IV');
48 48
                 }
49 49
                 return openssl_decrypt(base64_decode($text), 'AES-256-CBC', $key, 1, $iv);
50 50
             }
51 51
             else {
52
-                logger::write("tools::crypto function used\naction is not right, its must be `encode` or `decode`",loggerTypes::WARNING);
52
+                logger::write("tools::crypto function used\naction is not right, its must be `encode` or `decode`", loggerTypes::WARNING);
53 53
                 return false;
54 54
             }
55 55
         }
56 56
         else {
57
-            logger::write("tools::crypto function used\nopenssl extension is not found , It may not be installed or enabled",loggerTypes::ERROR);
57
+            logger::write("tools::crypto function used\nopenssl extension is not found , It may not be installed or enabled", loggerTypes::ERROR);
58 58
             throw new bptException('OPENSSL_EXTENSION_MISSING');
59 59
         }
60 60
     }
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
     public static function shortEncode(int $num): string {
72 72
         $codes = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
73 73
         $array = [];
74
-        while ($num > 0){
74
+        while ($num > 0) {
75 75
             $array[] = $num % 62;
76 76
             $num = floor($num / 62);
77 77
         }
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
         foreach ($array as &$value) {
80 80
             $value = $codes[$value];
81 81
         }
82
-        return strrev(implode('',$array));
82
+        return strrev(implode('', $array));
83 83
     }
84 84
 
85 85
     /**
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
         $num = 0;
97 97
         $text = str_split(strrev($text));
98 98
         foreach ($text as $key=>$value) {
99
-            $num += strpos($codes,$value) * pow(62,$key);
99
+            $num += strpos($codes, $value) * pow(62, $key);
100 100
         }
101 101
         return $num;
102 102
     }
Please login to merge, or discard this patch.
src/types/messageEntity.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
     public string $custom_emoji_id;
50 50
 
51 51
 
52
-    public function __construct(stdClass|null $object = null) {
52
+    public function __construct(stdClass | null $object = null) {
53 53
         if ($object != null) {
54 54
             parent::__construct($object, self::subs);
55 55
         }
Please login to merge, or discard this patch.
src/tools/generator.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -31,10 +31,10 @@  discard block
 block discarded – undo
31 31
      *
32 32
      * @return string
33 33
      */
34
-    public static function randomString (int $length = 16, string $characters = 'aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ'): string {
34
+    public static function randomString(int $length = 16, string $characters = 'aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ'): string {
35 35
         $rand_string = '';
36 36
         $char_len = strlen($characters) - 1;
37
-        for ($i = 0; $i < $length; $i ++) {
37
+        for ($i = 0; $i < $length; $i++) {
38 38
             $rand_string .= $characters[rand(0, $char_len)];
39 39
         }
40 40
         return $rand_string;
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
      * @return inlineKeyboardMarkup|replyKeyboardMarkup replyKeyboardMarkup for keyboard and inlineKeyboardMarkup for inline
64 64
      * @throws bptException
65 65
      */
66
-    public static function easyKey(array $keyboard = [], array $inline = []): inlineKeyboardMarkup|replyKeyboardMarkup {
66
+    public static function easyKey(array $keyboard = [], array $inline = []): inlineKeyboardMarkup | replyKeyboardMarkup {
67 67
         if (!empty($keyboard)) {
68 68
             $keyboard_object = new replyKeyboardMarkup();
69 69
             $keyboard_object->setResize_keyboard($keyboard['resize'] ?? true);
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
             return $keyboard_object;
123 123
         }
124 124
         else {
125
-            logger::write("tools::eKey function used\nkeyboard or inline parameter must be set",loggerTypes::ERROR);
125
+            logger::write("tools::eKey function used\nkeyboard or inline parameter must be set", loggerTypes::ERROR);
126 126
             throw new bptException('ARGUMENT_NOT_FOUND_KEYBOARD_INLINE');
127 127
         }
128 128
     }
@@ -139,9 +139,9 @@  discard block
 block discarded – undo
139 139
      *
140 140
      * @return string
141 141
      */
142
-    public static function inviteLink (int $user_id = null, string $bot_username = null): string {
142
+    public static function inviteLink(int $user_id = null, string $bot_username = null): string {
143 143
         if (empty($user_id)) $user_id = telegram::catchFields(fields::USER_ID);
144 144
         if (empty($bot_username)) $bot_username = telegram::getMe()->username;
145
-        return 'https://t.me/' . str_replace('@', '', $bot_username) . '?start=ref_' . tools::shortEncode($user_id);
145
+        return 'https://t.me/'.str_replace('@', '', $bot_username).'?start=ref_'.tools::shortEncode($user_id);
146 146
     }
147 147
 }
148 148
\ No newline at end of file
Please login to merge, or discard this patch.
src/tools/is.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
      *
21 21
      * @return bool
22 22
      */
23
-    public static function isUsername (string $username): bool {
23
+    public static function isUsername(string $username): bool {
24 24
         $length = strlen($username);
25 25
         return !str_contains($username, '__') && $length >= 5 && $length <= 33 && preg_match('/^@?([a-zA-Z])(\w{4,31})$/', $username);
26 26
     }
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
      *
38 38
      * @return bool
39 39
      */
40
-    public static function ipInRange (string $ip, string $range): bool {
40
+    public static function ipInRange(string $ip, string $range): bool {
41 41
         if (!str_contains($range, '/')) {
42 42
             $range .= '/32';
43 43
         }
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      *
58 58
      * @return bool
59 59
      */
60
-    public static function isTelegram (string $ip): bool {
60
+    public static function isTelegram(string $ip): bool {
61 61
         return tools::ipInRange($ip, '149.154.160.0/20') || tools::ipInRange($ip, '91.108.4.0/22');
62 62
     }
63 63
 
@@ -72,10 +72,10 @@  discard block
 block discarded – undo
72 72
      *
73 73
      * @return bool
74 74
      */
75
-    public static function isCloudFlare (string $ip): bool {
75
+    public static function isCloudFlare(string $ip): bool {
76 76
         $cf_ips = ['173.245.48.0/20', '103.21.244.0/22', '103.22.200.0/22', '103.31.4.0/22', '141.101.64.0/18', '108.162.192.0/18', '190.93.240.0/20', '188.114.96.0/20', '197.234.240.0/22', '198.41.128.0/17', '162.158.0.0/15', '104.16.0.0/12', '104.24.0.0/14', '172.64.0.0/13', '131.0.72.0/22'];
77 77
         foreach ($cf_ips as $cf_ip) {
78
-            if (self::ipInRange($ip,$cf_ip)) {
78
+            if (self::ipInRange($ip, $cf_ip)) {
79 79
                 return true;
80 80
             }
81 81
         }
@@ -93,10 +93,10 @@  discard block
 block discarded – undo
93 93
      *
94 94
      * @return bool
95 95
      */
96
-    public static function isArvanCloud (string $ip): bool {
96
+    public static function isArvanCloud(string $ip): bool {
97 97
         $ar_ips = ['185.143.232.0/22', '92.114.16.80/28', '2.146.0.0/28', '46.224.2.32/29', '89.187.178.96/29', '195.181.173.128/29', '89.187.169.88/29', '188.229.116.16/29', '83.123.255.56/31', '164.138.128.28/31', '94.182.182.28/30', '185.17.115.176/30', '5.213.255.36/31', '138.128.139.144/29', '5.200.14.8/29', '188.122.68.224/29', '188.122.83.176/29', '213.179.217.16/29', '185.179.201.192/29', '43.239.139.192/29', '213.179.197.16/29', '213.179.201.192/29', '109.200.214.248/29', '138.128.141.16/29', '188.122.78.136/29', '213.179.211.32/29', '103.194.164.24/29', '185.50.105.136/29', '213.179.213.16/29', '162.244.52.120/29', '188.122.80.240/29', '109.200.195.64/29', '109.200.199.224/29', '185.228.238.0/28', '94.182.153.24/29', '94.101.182.0/27', '37.152.184.208/28', '78.39.156.192/28', '158.255.77.238/31', '81.12.28.16/29', '176.65.192.202/31', '2.144.3.128/28', '89.45.48.64/28', '37.32.16.0/27', '37.32.17.0/27', '37.32.18.0/27'];
98 98
         foreach ($ar_ips as $ar_ip) {
99
-            if (self::ipInRange($ip,$ar_ip)) {
99
+            if (self::ipInRange($ip, $ar_ip)) {
100 100
                 return true;
101 101
             }
102 102
         }
@@ -116,9 +116,9 @@  discard block
 block discarded – undo
116 116
      *
117 117
      * @return bool|user return array when verify is active and token is true array of telegram getMe result
118 118
      */
119
-    public static function isToken (string $token, bool $verify = false): bool|user {
119
+    public static function isToken(string $token, bool $verify = false): bool | user {
120 120
         if (preg_match('/^(\d{8,10}):[\w\-]{35}$/', $token)) {
121
-            if ($verify){
121
+            if ($verify) {
122 122
                 $res = telegram::me($token);
123 123
                 if (telegram::$status) {
124 124
                     return $res;
@@ -150,14 +150,14 @@  discard block
 block discarded – undo
150 150
      *
151 151
      * @return bool
152 152
      */
153
-    public static function isJoined (array|string|int $ids , int|null $user_id = null): bool {
153
+    public static function isJoined(array | string | int $ids, int | null $user_id = null): bool {
154 154
         if (!is_array($ids)) {
155 155
             $ids = [$ids];
156 156
         }
157 157
         $user_id = $user_id ?? request::catchFields('user_id');
158 158
 
159 159
         foreach ($ids as $id) {
160
-            $check = telegram::getChatMember($id,$user_id);
160
+            $check = telegram::getChatMember($id, $user_id);
161 161
             if (telegram::$status) {
162 162
                 $check = $check->status;
163 163
                 if ($check === chatMemberStatus::LEFT || $check === chatMemberStatus::KICKED) {
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
      *
185 185
      * @return array keys will be id and values will be bool(null for not founded ids)
186 186
      */
187
-    public static function joinChecker (array|string|int $ids , int|null $user_id = null): array {
187
+    public static function joinChecker(array | string | int $ids, int | null $user_id = null): array {
188 188
         if (!is_array($ids)) {
189 189
             $ids = [$ids];
190 190
         }
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
 
193 193
         $result = [];
194 194
         foreach ($ids as $id) {
195
-            $check = telegram::getChatMember($id,$user_id);
195
+            $check = telegram::getChatMember($id, $user_id);
196 196
             if (telegram::$status) {
197 197
                 $check = $check->status;
198 198
                 $result[$id] = $check !== chatMemberStatus::LEFT && $check !== chatMemberStatus::KICKED;
@@ -212,6 +212,6 @@  discard block
 block discarded – undo
212 212
      * @return bool
213 213
      */
214 214
     public static function isShorted(string $text): bool{
215
-        return preg_match('/^[a-zA-Z0-9]+$/',$text);
215
+        return preg_match('/^[a-zA-Z0-9]+$/', $text);
216 216
     }
217 217
 }
218 218
\ No newline at end of file
Please login to merge, or discard this patch.
src/tools/convert.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -21,10 +21,10 @@  discard block
 block discarded – undo
21 21
      *
22 22
      * @return string
23 23
      */
24
-    public static function byteFormat (int $byte, int $precision = 2): string {
24
+    public static function byteFormat(int $byte, int $precision = 2): string {
25 25
         $rate_counter = 0;
26 26
 
27
-        while ($byte > 1024){
27
+        while ($byte > 1024) {
28 28
             $byte /= 1024;
29 29
             $rate_counter++;
30 30
         }
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
             $byte = round($byte, $precision);
34 34
         }
35 35
 
36
-        return $byte . ' ' . ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB'][$rate_counter];
36
+        return $byte.' '.['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB'][$rate_counter];
37 37
     }
38 38
 
39 39
     /**
@@ -50,10 +50,10 @@  discard block
 block discarded – undo
50 50
      *
51 51
      * @return string|false return false when mode is incorrect
52 52
      */
53
-    public static function modeEscape (string $text, string $mode = parseMode::HTML): string|false {
53
+    public static function modeEscape(string $text, string $mode = parseMode::HTML): string | false {
54 54
         return match ($mode) {
55
-            parseMode::HTML => str_replace(['&', '<', '>',], ["&amp;", "&lt;", "&gt;",], $text),
56
-            parseMode::MARKDOWN => str_replace(['\\', '_', '*', '`', '['], ['\\\\', '\_', '\*', '\`', '\[',], $text),
55
+            parseMode::HTML => str_replace(['&', '<', '>', ], ["&amp;", "&lt;", "&gt;", ], $text),
56
+            parseMode::MARKDOWN => str_replace(['\\', '_', '*', '`', '['], ['\\\\', '\_', '\*', '\`', '\[', ], $text),
57 57
             parseMode::MARKDOWNV2 => str_replace(
58 58
                 ['_', '*', '[', ']', '(', ')', '~', '`', '>', '#', '+', '-', '=', '|', '{', '}', '.', '!', '\\'],
59 59
                 ['\_', '\*', '\[', '\]', '\(', '\)', '\~', '\`', '\>', '\#', '\+', '\-', '\=', '\|', '\{', '\}', '\.', '\!', '\\\\'],
@@ -92,12 +92,12 @@  discard block
 block discarded – undo
92 92
      * @return array{status: string,year: string,month: string,day: string,hour: string,minute: string,second: string}
93 93
      * @throws Exception
94 94
      */
95
-    public static function timeDiff (int|string $target_time, int|string|null $base_time = null): array {
95
+    public static function timeDiff(int | string $target_time, int | string | null $base_time = null): array {
96 96
         if (!isset($base_time)) {
97 97
             $base_time = '@'.time();
98 98
         }
99 99
         $base_time = new DateTime($base_time);
100
-        $target_time = new DateTime(is_numeric($target_time) ? '@' . $target_time : $target_time . ' +00:00');
100
+        $target_time = new DateTime(is_numeric($target_time) ? '@'.$target_time : $target_time.' +00:00');
101 101
 
102 102
         $diff = $base_time->diff($target_time);
103 103
 
@@ -124,12 +124,12 @@  discard block
 block discarded – undo
124 124
      *
125 125
      * @return string[]|string
126 126
      */
127
-    public static function realEscapeString(string|array $input): string|array {
128
-        if(is_array($input)) {
127
+    public static function realEscapeString(string | array $input): string | array {
128
+        if (is_array($input)) {
129 129
             return array_map(__METHOD__, $input);
130 130
         }
131 131
 
132
-        if(!empty($input) && is_string($input)) {
132
+        if (!empty($input) && is_string($input)) {
133 133
             return str_replace(['\\', "\0", "\n", "\r", "'", '"', "\x1a"], ['\\\\', '\\0', '\\n', '\\r', "\\'", '\\"', '\\Z'], $input);
134 134
         }
135 135
 
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
      *
148 148
      * @return string[]|string
149 149
      */
150
-    public static function strReplaceFirst(string|array $search, string|array $replace, string|array $subject): string|array {
150
+    public static function strReplaceFirst(string | array $search, string | array $replace, string | array $subject): string | array {
151 151
         $pos = strpos($subject, $search);
152 152
         if ($pos !== false) {
153 153
             return substr_replace($subject, $replace, $pos, strlen($search));
Please login to merge, or discard this patch.
src/logger.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
     /**
18 18
      * @internal Only for BPT self usage , Don't use it in your source!
19 19
      */
20
-    public static function init (int $log_size = 10): void {
20
+    public static function init(int $log_size = 10): void {
21 21
         self::$log_size = $log_size;
22 22
         if (file_exists(settings::$name.'BPT.log') && !(filesize(settings::$name.'BPT.log') > self::$log_size * 1024 * 1024)) {
23 23
             $mode = 'a';
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
         self::$handler = fopen(settings::$name.'BPT.log', $mode);
31 31
 
32 32
         if ($write) {
33
-            fwrite(self::$handler,"♥♥♥♥♥♥♥♥♥♥♥♥♥♥ BPT Library  ♥♥♥♥♥♥♥♥♥♥♥♥♥♥\nTnx for using our library\nSome information about us :\nAuthor : @Im_Miaad\nHelper : @A_LiReza_ME\nChannel : @BPT_CH\nOur Website : https://bptlib.ir\n\nIf you have any problem with our library\nContact to our supports\n♥♥♥♥♥♥♥♥♥♥♥♥♥♥ BPT Library  ♥♥♥♥♥♥♥♥♥♥♥♥♥♥\nINFO : BPT Library LOG STARTED ...\nwarning : this file automatically deleted when its size reached log_size setting, do not delete it manually\n\n");
33
+            fwrite(self::$handler, "♥♥♥♥♥♥♥♥♥♥♥♥♥♥ BPT Library  ♥♥♥♥♥♥♥♥♥♥♥♥♥♥\nTnx for using our library\nSome information about us :\nAuthor : @Im_Miaad\nHelper : @A_LiReza_ME\nChannel : @BPT_CH\nOur Website : https://bptlib.ir\n\nIf you have any problem with our library\nContact to our supports\n♥♥♥♥♥♥♥♥♥♥♥♥♥♥ BPT Library  ♥♥♥♥♥♥♥♥♥♥♥♥♥♥\nINFO : BPT Library LOG STARTED ...\nwarning : this file automatically deleted when its size reached log_size setting, do not delete it manually\n\n");
34 34
         }
35 35
 
36 36
         if (self::$waited_logs != []) {
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
      * @return void
52 52
      */
53 53
     public static function write(string $data, string $type = loggerTypes::NONE): void {
54
-        $text = date('Y/m/d H:i:s') . ( $type === loggerTypes::NONE ? " : $data\n\n" : " : ⤵\n$type : $data\n\n" );
54
+        $text = date('Y/m/d H:i:s').($type === loggerTypes::NONE ? " : $data\n\n" : " : ⤵\n$type : $data\n\n");
55 55
         if (!is_null(self::$handler)) {
56 56
             fwrite(self::$handler, $text);
57 57
         }
Please login to merge, or discard this patch.
src/exception/telegramException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,4 +9,4 @@
 block discarded – undo
9 9
  *
10 10
  * @todo make it usefully (it's not called at all)
11 11
  */
12
-class telegramException extends Exception{}
13 12
\ No newline at end of file
13
+class telegramException extends Exception {}
14 14
\ No newline at end of file
Please login to merge, or discard this patch.
src/api/request/curl.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -17,17 +17,17 @@  discard block
 block discarded – undo
17 17
     /**
18 18
      * @internal Only for BPT self usage , Don't use it in your source!
19 19
      */
20
-    public static function init(string $method,array $data) {
20
+    public static function init(string $method, array $data) {
21 21
         $info = self::getInfo($data);
22 22
         $data = $info['data'];
23 23
         $handler = $info['handler'];
24
-        self::setTimeout($data,$handler,$method);
24
+        self::setTimeout($data, $handler, $method);
25 25
         self::setData($data);
26 26
         $data['method'] = $method;
27 27
         curl_setopt($handler, CURLOPT_POSTFIELDS, $data);
28 28
         $result = curl_exec($handler);
29 29
         if (curl_errno($handler)) {
30
-            logger::write(curl_error($handler),loggerTypes::WARNING);
30
+            logger::write(curl_error($handler), loggerTypes::WARNING);
31 31
         }
32 32
         if ($info['token'] != settings::$token) {
33 33
             curl_close($handler);
@@ -43,9 +43,9 @@  discard block
 block discarded – undo
43 43
             curl_setopt($curl_handler, CURLOPT_RETURNTRANSFER, true);
44 44
             curl_setopt($curl_handler, CURLOPT_SSL_VERIFYPEER, false);
45 45
         }
46
-        else{
46
+        else {
47 47
             $token = settings::$token;
48
-            if (!isset(self::$curl_handler)){
48
+            if (!isset(self::$curl_handler)) {
49 49
                 self::$curl_handler = curl_init(settings::$base_url."/bot$token/");
50 50
                 curl_setopt(self::$curl_handler, CURLOPT_RETURNTRANSFER, true);
51 51
                 curl_setopt(self::$curl_handler, CURLOPT_SSL_VERIFYPEER, false);
@@ -61,22 +61,22 @@  discard block
 block discarded – undo
61 61
         ];
62 62
     }
63 63
 
64
-    private static function setTimeout(array &$data , CurlHandle $curl_handler,string $method): void {
64
+    private static function setTimeout(array &$data, CurlHandle $curl_handler, string $method): void {
65 65
         if (isset($data['forgot'])) {
66 66
             curl_setopt($curl_handler, CURLOPT_TIMEOUT_MS, settings::$forgot_time);
67 67
             unset($data['forgot']);
68 68
         }
69
-        elseif ($method === 'getUpdates'){
69
+        elseif ($method === 'getUpdates') {
70 70
             curl_setopt($curl_handler, CURLOPT_TIMEOUT_MS, 5000);
71 71
         }
72
-        else{
72
+        else {
73 73
             curl_setopt($curl_handler, CURLOPT_TIMEOUT_MS, 300);
74 74
         }
75 75
     }
76 76
 
77 77
     private static function setData(array &$data): void {
78
-        foreach ($data as &$value){
79
-            if (is_array($value) || (is_object($value) && !is_a($value,'CURLFile'))){
78
+        foreach ($data as &$value) {
79
+            if (is_array($value) || (is_object($value) && !is_a($value, 'CURLFile'))) {
80 80
                 $value = json_encode($value);
81 81
             }
82 82
         }
Please login to merge, or discard this patch.