Optimized Interface structure

This commit is contained in:
Kevin Frantz
2018-09-24 18:41:26 +02:00
parent a6fac55be4
commit 1087c6b2ad
56 changed files with 177 additions and 141 deletions

View File

@@ -1,16 +0,0 @@
<?php
namespace App\Entity;
use App\Entity\Attribut\SourceAttributInterface;
use App\Entity\Attribut\IdAttributInterface;
use App\Entity\Attribut\ParentsAttributInterface;
use App\Entity\Attribut\ChildsAttributeInterface;
use App\Entity\Attribut\LawAttributInterface;
/**
* @author kevinfrantz
*/
interface NodeInterface extends SourceAttributInterface, IdAttributInterface, ParentsAttributInterface, ChildsAttributeInterface, LawAttributInterface
{
}