infinito/application/src/Entity/SourceInterface.php
Marco Petersen f1b9ffd160 Format code
2018-09-12 23:25:22 +03:00

14 lines
235 B
PHP

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