diff --git a/src/TgBotLib/Enums/Methods.php b/src/TgBotLib/Enums/Methods.php index 17f9a80..c256d68 100644 --- a/src/TgBotLib/Enums/Methods.php +++ b/src/TgBotLib/Enums/Methods.php @@ -23,6 +23,7 @@ use TgBotLib\Methods\ForwardMessages; use TgBotLib\Methods\GetChat; use TgBotLib\Methods\GetChatAdministrators; + use TgBotLib\Methods\GetChatMemberCount; use TgBotLib\Methods\GetFile; use TgBotLib\Methods\GetMe; use TgBotLib\Methods\GetUpdates; @@ -120,6 +121,7 @@ case LEAVE_CHAT = 'leaveChat'; case GET_CHAT = 'getChat'; case GET_CHAT_ADMINISTRATORS = 'getChatAdministrators'; + case GET_CHAT_MEMBER_COUNT = 'getChatMemberCount'; /** * Executes a command on the provided bot with the given parameters. @@ -189,6 +191,7 @@ self::LEAVE_CHAT => LeaveChat::execute($bot, $parameters), self::GET_CHAT => GetChat::execute($bot, $parameters), self::GET_CHAT_ADMINISTRATORS => GetChatAdministrators::execute($bot, $parameters), + self::GET_CHAT_MEMBER_COUNT => GetChatMemberCount::execute($bot, $parameters), }; } } diff --git a/src/TgBotLib/Methods/GetChatMemberCount.php b/src/TgBotLib/Methods/GetChatMemberCount.php new file mode 100644 index 0000000..6eeee6f --- /dev/null +++ b/src/TgBotLib/Methods/GetChatMemberCount.php @@ -0,0 +1,37 @@ +value, $parameters)); + } + + /** + * @inheritDoc + */ + public static function getRequiredParameters(): ?array + { + return [ + 'chat_id' + ]; + } + + /** + * @inheritDoc + */ + public static function getOptionalParameters(): ?array + { + return null; + } + } \ No newline at end of file