mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 14:27:28 +01:00
17 lines
451 B
PHP
17 lines
451 B
PHP
<?php
|
|
|
|
namespace App\Entity\Source;
|
|
|
|
use App\Entity\Attribut\IdAttributInterface;
|
|
use App\Entity\EntityInterface;
|
|
use App\Entity\Attribut\LawAttributInterface;
|
|
use App\Entity\Attribut\RelationAttributInterface;
|
|
use App\Entity\Attribut\MembershipsAttributInterface;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
interface SourceInterface extends IdAttributInterface, EntityInterface, MembershipsAttributInterface, LawAttributInterface, RelationAttributInterface
|
|
{
|
|
}
|