infinito/application/src/Entity/NodeInterface.php

25 lines
510 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:09:28 +02:00
use App\Entity\attribut\SourceAttributInterface;
2018-09-05 15:46:14 +02:00
/**
*
* @author kevinfrantz
*
*/
2018-09-06 12:58:36 +02:00
interface NodeInterface extends SourceAttributInterface
2018-09-05 15:46:14 +02:00
{
public function getId():int;
public function setParents(ArrayCollection $parents):void;
public function getParents():ArrayCollection;
public function setChilds(ArrayCollection $childs):void;
public function getChilds():ArrayCollection;
}