Entity draft

This commit is contained in:
Kevin Frantz
2018-09-06 12:58:36 +02:00
parent 9520b09db0
commit 2a1f3bd264
12 changed files with 143 additions and 59 deletions

View File

@@ -2,13 +2,14 @@
namespace App\Entity;
use Doctrine\Common\Collections\ArrayCollection;
use Entity\attribut\SourceAttributInterface;
/**
*
* @author kevinfrantz
*
*/
interface NodeInterface
interface NodeInterface extends SourceAttributInterface
{
public function getId():int;
@@ -19,9 +20,5 @@ interface NodeInterface
public function setChilds(ArrayCollection $childs):void;
public function getChilds():ArrayCollection;
public function getSource():SourceInterface;
public function setSource(SourceInterface $source):void;
}