2018-09-24 18:41:26 +02:00
|
|
|
<?php
|
|
|
|
|
2018-10-28 15:25:32 +01:00
|
|
|
namespace App\Entity\Meta;
|
2018-09-24 18:41:26 +02:00
|
|
|
|
2018-10-03 16:14:15 +02:00
|
|
|
use App\Entity\Attribut\SourceAttributInterface;
|
|
|
|
use App\Entity\Attribut\IdAttributInterface;
|
|
|
|
use App\Entity\Attribut\ParentsAttributInterface;
|
|
|
|
use App\Entity\Attribut\ChildsAttributeInterface;
|
|
|
|
use App\Entity\Attribut\LawAttributInterface;
|
2018-09-24 18:41:26 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @author kevinfrantz
|
|
|
|
*/
|
2018-10-28 15:25:32 +01:00
|
|
|
interface RelationInterface extends SourceAttributInterface, IdAttributInterface, ParentsAttributInterface, ChildsAttributeInterface, LawAttributInterface,MetaInterface
|
2018-09-24 18:41:26 +02:00
|
|
|
{
|
|
|
|
}
|