infinito/application/src/Entity/SourceInterface.php
2018-09-06 14:03:08 +02:00

16 lines
249 B
PHP

<?php
namespace App\Entity;
use App\Entity\Attribut\NodeAttributInterface;
use App\Entity\Attribut\IdAttributInterface;
/**
*
* @author kevinfrantz
*
*/
interface SourceInterface extends IdAttributInterface, NodeAttributInterface
{
}