@@ -11,7 +11,7 @@ |
||
| 11 | 11 | /** |
| 12 | 12 | * @method Json_init |
| 13 | 13 | */ |
| 14 | - public function json_init () { |
|
| 14 | + public function json_init() { |
|
| 15 | 15 | (new jsondb())->init(handler::$dbname); |
| 16 | 16 | } |
| 17 | 17 | } |
| 18 | 18 | \ No newline at end of file |
@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | /** |
| 49 | 49 | * |
| 50 | 50 | */ |
| 51 | - public function __construct (array $settings) { |
|
| 51 | + public function __construct(array $settings) { |
|
| 52 | 52 | if (in_array($settings['type'], self::TYPES)) { |
| 53 | 53 | if ($settings['type'] === 'Mysqli') { |
| 54 | 54 | if (self::CheckParam($settings)) { |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | } |
| 89 | 89 | } |
| 90 | 90 | |
| 91 | - private static function CheckParam (array $array) { |
|
| 91 | + private static function CheckParam(array $array) { |
|
| 92 | 92 | if (isset($array['username']) && isset($array['dbname']) && isset($array['password'])) { |
| 93 | 93 | self::$host = $array['host'] ?? 'localhost'; |
| 94 | 94 | self::$username = $array['username']; |
@@ -7,4 +7,4 @@ |
||
| 7 | 7 | /** |
| 8 | 8 | * Exceptions created by BPT and subclasses |
| 9 | 9 | */ |
| 10 | -class bptException extends Exception{} |
|
| 11 | 10 | \ No newline at end of file |
| 11 | +class bptException extends Exception {} |
|
| 12 | 12 | \ No newline at end of file |
@@ -4,4 +4,4 @@ |
||
| 4 | 4 | |
| 5 | 5 | use Exception; |
| 6 | 6 | |
| 7 | -class telegramException extends Exception{} |
|
| 8 | 7 | \ No newline at end of file |
| 8 | +class telegramException extends Exception {} |
|
| 9 | 9 | \ No newline at end of file |
@@ -236,13 +236,13 @@ discard block |
||
| 236 | 236 | * @method gameHighScore[]|responseError getGameHighScores (int|null|array $user_id = null, int|null $chat_id = null, int|null $message_id = null, string|null $inline_message_id = null, string|null $token = null, bool|null $return_array = null, bool|null $forgot = null, bool|null $answer = null) Use this method to get data for high score tables. Will return the score of the specified user and several of their neighbors in a game. On success, returns an Array of GameHighScore objects. |
| 237 | 237 | * @method gameHighScore[]|responseError getGameHigh (int|null|array $user_id = null, int|null $chat_id = null, int|null $message_id = null, string|null $inline_message_id = null, string|null $token = null, bool|null $return_array = null, bool|null $forgot = null, bool|null $answer = null) Use this method to get data for high score tables. Will return the score of the specified user and several of their neighbors in a game. On success, returns an Array of GameHighScore objects. |
| 238 | 238 | */ |
| 239 | -class BPT extends telegram{ |
|
| 239 | +class BPT extends telegram { |
|
| 240 | 240 | public static update $update; |
| 241 | 241 | |
| 242 | 242 | public static BPT $handler; |
| 243 | 243 | |
| 244 | 244 | |
| 245 | - public function __construct (array|stdClass $settings) { |
|
| 245 | + public function __construct(array | stdClass $settings) { |
|
| 246 | 246 | static::$handler = &$this; |
| 247 | 247 | settings::init($settings); |
| 248 | 248 | } |
@@ -251,7 +251,7 @@ discard block |
||
| 251 | 251 | settings::done(); |
| 252 | 252 | } |
| 253 | 253 | |
| 254 | - public static function exit (string|null $message = null) { |
|
| 254 | + public static function exit (string | null $message = null) { |
|
| 255 | 255 | die($message ?? "<div style='width:98vw;height:98vh;display:flex;justify-content:center;align-items:center;font-size:25vw'>BPT</div>"); |
| 256 | 256 | } |
| 257 | 257 | } |
@@ -18,7 +18,7 @@ |
||
| 18 | 18 | public string $description; |
| 19 | 19 | |
| 20 | 20 | |
| 21 | - public function __construct(stdClass|null $object = null) { |
|
| 21 | + public function __construct(stdClass | null $object = null) { |
|
| 22 | 22 | if ($object != null) { |
| 23 | 23 | parent::__construct($object, self::subs); |
| 24 | 24 | } |
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | /** Keep all of properties which has sub properties */ |
| 12 | 12 | private const subs = []; |
| 13 | 13 | |
| 14 | - public function __construct(stdClass|null $object = null) { |
|
| 14 | + public function __construct(stdClass | null $object = null) { |
|
| 15 | 15 | if ($object != null) { |
| 16 | 16 | parent::__construct($object, self::subs); |
| 17 | 17 | } |
@@ -28,7 +28,7 @@ |
||
| 28 | 28 | public int $file_date; |
| 29 | 29 | |
| 30 | 30 | |
| 31 | - public function __construct(stdClass|null $object = null) { |
|
| 31 | + public function __construct(stdClass | null $object = null) { |
|
| 32 | 32 | if ($object != null) { |
| 33 | 33 | parent::__construct($object, self::subs); |
| 34 | 34 | } |
@@ -46,7 +46,7 @@ |
||
| 46 | 46 | public photoSize $thumb; |
| 47 | 47 | |
| 48 | 48 | |
| 49 | - public function __construct(stdClass|null $object = null) { |
|
| 49 | + public function __construct(stdClass | null $object = null) { |
|
| 50 | 50 | if ($object != null) { |
| 51 | 51 | parent::__construct($object, self::subs); |
| 52 | 52 | } |