infinito/application/src/Entity/SourceInterface.php

16 lines
249 B
PHP
Raw Normal View History

2018-09-05 15:46:14 +02:00
<?php
namespace App\Entity;
2018-09-06 14:03:08 +02:00
use App\Entity\Attribut\NodeAttributInterface;
use App\Entity\Attribut\IdAttributInterface;
2018-09-06 12:58:36 +02:00
2018-09-05 15:46:14 +02:00
/**
*
* @author kevinfrantz
*
*/
2018-09-06 12:58:36 +02:00
interface SourceInterface extends IdAttributInterface, NodeAttributInterface
2018-09-05 15:46:14 +02:00
{
}