2018-09-05 15:46:14 +02:00
|
|
|
<?php
|
|
|
|
namespace App\Entity;
|
|
|
|
|
|
|
|
use Doctrine\Common\Collections\ArrayCollection;
|
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-05 15:46:14 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @author kevinfrantz
|
|
|
|
*
|
|
|
|
*/
|
2018-09-06 13:52:34 +02:00
|
|
|
interface NodeInterface extends SourceAttributInterface, IdAttributInterface,ParentsAttributInterface
|
|
|
|
{
|
2018-09-05 15:46:14 +02:00
|
|
|
public function setChilds(ArrayCollection $childs):void;
|
|
|
|
|
|
|
|
public function getChilds():ArrayCollection;
|
|
|
|
}
|
|
|
|
|