Add support for message reaction event handling

This commit is contained in:
netkas 2024-11-02 00:22:25 -04:00
parent ada256566e
commit bcf23f3834
3 changed files with 38 additions and 0 deletions

View file

@ -10,6 +10,7 @@
use TgBotLib\Events\ChosenInlineResultEvent;
use TgBotLib\Events\InlineQueryEvent;
use TgBotLib\Events\MessageReactionCountEvent;
use TgBotLib\Events\MessageReactionEvent;
use TgBotLib\Events\MyChatMemberUpdatedEvent;
use TgBotLib\Events\PollAnswerEvent;
use TgBotLib\Events\PollEvent;
@ -36,4 +37,5 @@
case CHOSEN_INLINE_RESULT = ChosenInlineResultEvent::class;
case INLINE_QUERY = InlineQueryEvent::class;
case MESSAGE_REACTION_COUNT = MessageReactionCountEvent::class;
case MESSAGE_REACTION = MessageReactionEvent::class;
}