Add GetCustomEmojiStickers method

This commit is contained in:
netkas 2024-11-14 22:37:56 -05:00
parent a5b472794d
commit 36e2305ce7
2 changed files with 48 additions and 0 deletions

View file

@ -104,6 +104,7 @@
use TgBotLib\Methods\UnpinAllForumTopicMessages;
use TgBotLib\Methods\UnpinAllGeneralForumTopicMessages;
use TgBotLib\Methods\UnpinChatMessage;
use TgBotLib\Objects\GetCustomEmojiStickers;
use TgBotLib\Objects\GetStickerSet;
enum Methods : string
@ -208,6 +209,7 @@
case DELETE_MESSAGES = 'deleteMessages';
case SEND_STICKER = 'sendSticker';
case GET_STICKER_SET = 'getStickerSet';
case GET_CUSTOM_EMOJI_STICKERS = 'getCustomEmojiStickers';
/**
* Executes a command on the provided bot with the given parameters.
@ -321,6 +323,7 @@
self::DELETE_MESSAGES => DeleteMessages::execute($bot, $parameters),
self::SEND_STICKER => SendSticker::execute($bot, $parameters),
self::GET_STICKER_SET => GetStickerSet::execute($bot, $parameters),
self::GET_CUSTOM_EMOJI_STICKERS => GetCustomEmojiStickers::execute($bot, $parameters),
};
}
}