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

17 lines
451 B
PHP
Raw Normal View History

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;
use App\Entity\Attribut\LawAttributInterface;
2018-10-31 22:57:56 +01:00
use App\Entity\Attribut\RelationAttributInterface;
use App\Entity\Attribut\MembershipsAttributInterface;
2018-10-03 16:14:15 +02:00
/**
* @author kevinfrantz
*/
interface SourceInterface extends IdAttributInterface, EntityInterface, MembershipsAttributInterface, LawAttributInterface, RelationAttributInterface
2018-10-03 16:14:15 +02:00
{
}