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

15 lines
293 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;
2018-10-03 18:55:33 +02:00
use App\Entity\EntityInterface;
2018-10-03 16:14:15 +02:00
/**
*
* @author kevinfrantz
*/
2018-10-03 18:55:33 +02:00
interface SourceInterface extends IdAttributInterface, NodeAttributInterface, EntityInterface
2018-10-03 16:14:15 +02:00
{
}