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

13 lines
197 B
PHP
Raw Normal View History

2018-09-14 14:12:43 +02:00
<?php
2018-09-14 14:39:47 +02:00
2018-10-03 16:14:15 +02:00
namespace App\Entity\Source;
2018-09-14 14:12:43 +02:00
2018-10-03 16:14:15 +02:00
use App\Entity\Attribut\NameAttributInterface;
2018-09-14 14:12:43 +02:00
/**
* @author kevinfrantz
*/
2018-09-14 14:39:47 +02:00
interface NameSourceInterface extends NameAttributInterface, SourceInterface
2018-09-14 14:12:43 +02:00
{
}