Add ChatBoostEvent class

This commit is contained in:
netkas 2024-11-01 15:46:32 -04:00
parent 40fd31cc79
commit 6787654243

View file

@ -0,0 +1,23 @@
<?php
namespace TgBotLib\Events;
use TgBotLib\Abstracts\UpdateEvent;
use TgBotLib\Enums\EventType;
use TgBotLib\Objects\ChatBoostUpdated;
abstract class ChatBoostEvent extends UpdateEvent
{
/**
* @inheritDoc
*/
public static function getEventType(): EventType
{
return EventType::CHAT_BOOST_EVENT;
}
protected function getChatBoost(): ChatBoostUpdated
{
return $this->update->getChatBoost();
}
}