2018-09-05 15:46:14 +02:00
|
|
|
<?php
|
2018-09-12 23:25:22 +03:00
|
|
|
|
2018-09-05 15:46:14 +02:00
|
|
|
namespace App\Entity;
|
|
|
|
|
2018-09-06 13:52:34 +02:00
|
|
|
use App\Entity\Attribut\SourceAttributInterface;
|
|
|
|
use App\Entity\Attribut\IdAttributInterface;
|
|
|
|
use App\Entity\Attribut\ParentsAttributInterface;
|
2018-09-06 14:34:43 +02:00
|
|
|
use App\Entity\Attribut\ChildsAttributeInterface;
|
2018-09-13 14:39:03 +02:00
|
|
|
use App\Entity\Attribut\LawAttributInterface;
|
2018-09-05 15:46:14 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @author kevinfrantz
|
|
|
|
*/
|
2018-09-13 14:39:03 +02:00
|
|
|
interface NodeInterface extends SourceAttributInterface, IdAttributInterface, ParentsAttributInterface, ChildsAttributeInterface, LawAttributInterface
|
2018-09-12 23:25:22 +03:00
|
|
|
{
|
|
|
|
}
|