mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-25 13:12:22 +01:00
17 lines
523 B
PHP
17 lines
523 B
PHP
|
<?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
|
||
|
{
|
||
|
}
|