infinito/application/src/Entity/NodeInterface.php

17 lines
400 B
PHP
Raw Normal View History

2018-09-05 15:46:14 +02:00
<?php
namespace App\Entity;
2018-09-06 13:52:34 +02:00
use App\Entity\Attribut\SourceAttributInterface;
use App\Entity\Attribut\IdAttributInterface;
use App\Entity\Attribut\ParentsAttributInterface;
2018-09-06 14:34:43 +02:00
use App\Entity\Attribut\ChildsAttributeInterface;
2018-09-05 15:46:14 +02:00
/**
*
* @author kevinfrantz
*
*/
2018-09-06 14:34:43 +02:00
interface NodeInterface extends SourceAttributInterface, IdAttributInterface,ParentsAttributInterface,ChildsAttributeInterface
{}
2018-09-05 15:46:14 +02:00