mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 21:57:16 +02:00
Optimized folder draft
This commit is contained in:
16
application/src/Entity/NodeInterface.php
Normal file
16
application/src/Entity/NodeInterface.php
Normal 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
|
||||
{
|
||||
}
|
Reference in New Issue
Block a user