Add abstract handle method in UpdateEvent

This commit is contained in:
netkas 2024-11-04 15:19:29 -05:00
parent f03490cb6c
commit 87f9321280

View file

@ -30,5 +30,11 @@
return EventType::UPDATE_EVENT;
}
/**
* Abstract method to handle the bot instance.
*
* @param Bot $bot The bot instance to be handled.
* @return void
*/
public abstract function handle(Bot $bot): void;
}