Rename UpdateEventType to EventType for consistency

This commit is contained in:
netkas 2024-11-03 18:25:42 -05:00
parent a24c617c9f
commit 7623f488ee
28 changed files with 110 additions and 110 deletions

View file

@ -4,7 +4,7 @@
use TgBotLib\Abstracts\UpdateEvent;
use TgBotLib\Bot;
use TgBotLib\Enums\UpdateEventType;
use TgBotLib\Enums\EventType;
use TgBotLib\Objects\Payments\ShippingQuery;
abstract class ShippingQueryEvent extends UpdateEvent
@ -12,9 +12,9 @@
/**
* @inheritDoc
*/
public static function getEventType(): UpdateEventType
public static function getEventType(): EventType
{
return UpdateEventType::SHIPPING_QUERY;
return EventType::SHIPPING_QUERY;
}
/**