mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2026-02-06 05:04:07 +00:00
18 lines
541 B
PHP
18 lines
541 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\SlugAttributInterface;
|
|
use App\Entity\Attribut\CreatorRelationAttributInterface;
|
|
use App\Entity\Attribut\MemberRelationAttributInterface;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
interface SourceInterface extends IdAttributInterface, EntityInterface, LawAttributInterface, SlugAttributInterface, CreatorRelationAttributInterface, MemberRelationAttributInterface
|
|
{
|
|
}
|