mirror of
https://github.com/jbcr/core.git
synced 2026-03-25 01:12:09 +01:00
12 lines
216 B
PHP
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
|
|
{
|
|
}
|