mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-28 22:44:00 +01:00
21 lines
493 B
PHP
21 lines
493 B
PHP
<?php
|
|
namespace App\Entity;
|
|
|
|
use Doctrine\Common\Collections\ArrayCollection;
|
|
use App\Entity\Attribut\SourceAttributInterface;
|
|
use App\Entity\Attribut\IdAttributInterface;
|
|
use App\Entity\Attribut\ParentsAttributInterface;
|
|
|
|
/**
|
|
*
|
|
* @author kevinfrantz
|
|
*
|
|
*/
|
|
interface NodeInterface extends SourceAttributInterface, IdAttributInterface,ParentsAttributInterface
|
|
{
|
|
public function setChilds(ArrayCollection $childs):void;
|
|
|
|
public function getChilds():ArrayCollection;
|
|
}
|
|
|