Add GetChatMemberCount method to TgBotLib
This commit is contained in:
parent
7a18d72419
commit
576deca185
2 changed files with 40 additions and 0 deletions
|
@ -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),
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue