Files
core/src/Entity/TranslationInterface.php
2020-01-13 19:55:46 +01:00

12 lines
216 B
PHP

<?php
declare(strict_types=1);
namespace Bolt\Entity;
use Knp\DoctrineBehaviors\Contract\Entity\TranslationInterface as KnpTranslationInterface;
interface TranslationInterface extends KnpTranslationInterface
{
}