infinito/application/src/Entity/Meta/Relation/Parent/ParentRelationInterface.php
2018-11-25 22:33:54 +01:00

12 lines
316 B
PHP

<?php
namespace App\Entity\Meta\Relation\Parent;
use App\Entity\Attribut\ParentsAttributInterface;
use App\Entity\Attribut\ChildsAttributeInterface;
use App\Entity\Meta\Relation\RelationInterface;
interface ParentRelationInterface extends RelationInterface, ParentsAttributInterface, ChildsAttributeInterface
{
}