Add CommandEvent to EventType enum

This commit is contained in:
netkas 2024-11-04 01:16:47 -05:00
parent 53824b7126
commit 6b9ecaa153

View file

@ -11,6 +11,7 @@
use TgBotLib\Events\ChatJoinRequestEvent; use TgBotLib\Events\ChatJoinRequestEvent;
use TgBotLib\Events\ChatMemberUpdatedEvent; use TgBotLib\Events\ChatMemberUpdatedEvent;
use TgBotLib\Events\ChosenInlineResultEvent; use TgBotLib\Events\ChosenInlineResultEvent;
use TgBotLib\Events\CommandEvent;
use TgBotLib\Events\DeletedBusinessMessagesEvent; use TgBotLib\Events\DeletedBusinessMessagesEvent;
use TgBotLib\Events\EditedBusinessMessageEvent; use TgBotLib\Events\EditedBusinessMessageEvent;
use TgBotLib\Events\EditedChannelPostEvent; use TgBotLib\Events\EditedChannelPostEvent;
@ -54,6 +55,7 @@
case CHANNEL_POST = ChannelPostEvent::class; case CHANNEL_POST = ChannelPostEvent::class;
case EDITED_MESSAGE = EditedMessageEvent::class; case EDITED_MESSAGE = EditedMessageEvent::class;
case MESSAGE = MessageEvent::class; case MESSAGE = MessageEvent::class;
case COMMAND = CommandEvent::class;
/** /**
* Determines the type of event based on the provided Update object. * Determines the type of event based on the provided Update object.