From 69f796b951fbe0735042edc1fd70cbc743cedcb2 Mon Sep 17 00:00:00 2001 From: netkas Date: Thu, 7 Nov 2024 01:01:06 -0500 Subject: [PATCH] Add GetUserChatBoosts method --- src/TgBotLib/Enums/Methods.php | 3 ++ src/TgBotLib/Methods/GetUserChatBoosts.php | 41 ++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 src/TgBotLib/Methods/GetUserChatBoosts.php diff --git a/src/TgBotLib/Enums/Methods.php b/src/TgBotLib/Enums/Methods.php index e515a4f..2c75825 100644 --- a/src/TgBotLib/Enums/Methods.php +++ b/src/TgBotLib/Enums/Methods.php @@ -37,6 +37,7 @@ use TgBotLib\Methods\GetForumTopicIconStickers; use TgBotLib\Methods\GetMe; use TgBotLib\Methods\GetUpdates; + use TgBotLib\Methods\GetUserChatBoosts; use TgBotLib\Methods\GetUserProfilePhotos; use TgBotLib\Methods\GetWebhookInfo; use TgBotLib\Methods\HideGeneralForumTopic; @@ -156,6 +157,7 @@ case UNHIDE_GENERAL_FORUM_TOPIC = 'unhideGeneralForumTopic'; case UNPIN_ALL_GENERAL_FORUM_TOPIC_MESSAGES = 'unpinAllGeneralForumTopicMessages'; case ANSWER_CALLBACK_QUERY = 'answerCallbackQuery'; + case GET_USER_CHAT_BOOSTS = 'getUserChatBoosts'; /** * Executes a command on the provided bot with the given parameters. @@ -243,6 +245,7 @@ self::UNHIDE_GENERAL_FORUM_TOPIC => UnhideGeneralForumTopic::execute($bot, $parameters), self::UNPIN_ALL_GENERAL_FORUM_TOPIC_MESSAGES => UnpinAllGeneralForumTopicMessages::execute($bot, $parameters), self::ANSWER_CALLBACK_QUERY => AnswerCallbackQuery::execute($bot, $parameters), + self::GET_USER_CHAT_BOOSTS => GetUserChatBoosts::execute($bot, $parameters), }; } } diff --git a/src/TgBotLib/Methods/GetUserChatBoosts.php b/src/TgBotLib/Methods/GetUserChatBoosts.php new file mode 100644 index 0000000..31a5cb2 --- /dev/null +++ b/src/TgBotLib/Methods/GetUserChatBoosts.php @@ -0,0 +1,41 @@ +value, $parameters)) + ); + } + + /** + * @inheritDoc + */ + public static function getRequiredParameters(): ?array + { + return [ + 'chat_id', + 'user_id' + ]; + } + + /** + * @inheritDoc + */ + public static function getOptionalParameters(): ?array + { + return null; + } + } \ No newline at end of file