Optimized folder draft

This commit is contained in:
Kevin Frantz
2018-10-03 15:38:45 +02:00
parent 74b45cb24d
commit e9e8fb91df
36 changed files with 0 additions and 0 deletions

View File

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