31 lines
541 B
PHP
Raw Normal View History

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\IdAttribut;
use App\Entity\attribut\SourceAttribut;
use Entity\attribut\ParentAttribut;
2018-09-05 15:46:14 +02:00
/**
*
* @author kevinfrantz
*
*/
class Node implements NodeInterface
{
2018-09-06 13:52:34 +02:00
use IdAttribut,SourceAttribut, ParentAttribut;
2018-09-05 15:46:14 +02:00
/**
*
* @var ArrayCollection|Node[]
*/
protected $childs;
public function getChilds(): ArrayCollection
{}
public function setChilds(ArrayCollection $childs): void
{}
}