infinito/application/src/Entity/Source/SourceInterface.php

14 lines
244 B
PHP
Raw Normal View History

2018-10-03 16:14:15 +02:00
<?php
namespace App\Entity\Source;
use App\Entity\Attribut\NodeAttributInterface;
use App\Entity\Attribut\IdAttributInterface;
/**
*
* @author kevinfrantz
*/
interface SourceInterface extends IdAttributInterface, NodeAttributInterface
{
}