2018-10-03 16:14:15 +02:00
|
|
|
<?php
|
2018-10-29 19:01:00 +01:00
|
|
|
|
2018-10-03 16:14:15 +02:00
|
|
|
namespace App\Entity\Source;
|
|
|
|
|
|
|
|
use App\Entity\Attribut\IdAttributInterface;
|
2018-10-03 18:55:33 +02:00
|
|
|
use App\Entity\EntityInterface;
|
2018-10-27 14:56:26 +02:00
|
|
|
use App\Entity\Source\Attribut\GroupSourcesAttributInterface;
|
2018-10-28 20:28:29 +01:00
|
|
|
use App\Entity\Attribut\LawAttributInterface;
|
2018-10-03 16:14:15 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @author kevinfrantz
|
|
|
|
*/
|
2018-10-28 20:28:29 +01:00
|
|
|
interface SourceInterface extends IdAttributInterface, EntityInterface, GroupSourcesAttributInterface, LawAttributInterface
|
2018-10-03 16:14:15 +02:00
|
|
|
{
|
|
|
|
}
|