Files
kupshop/bundles/KupShop/I18nBundle/Entity/Interfaces/ITranslatableEntity.php
2025-08-02 16:30:27 +02:00

11 lines
193 B
PHP

<?php
namespace KupShop\I18nBundle\Entity\Interfaces;
use KupShop\I18nBundle\Translations\ITranslation;
interface ITranslatableEntity
{
public function getTranslation(): ITranslation;
}