mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 14:27:28 +01:00
17 lines
457 B
PHP
17 lines
457 B
PHP
<?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
|
|
{
|
|
}
|