mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-03-16 03:46:25 +01:00
17 lines
372 B
PHP
17 lines
372 B
PHP
<?php
|
|
|
|
namespace App\Entity\Meta;
|
|
|
|
use App\Entity\EntityInterface;
|
|
use App\Entity\Attribut\SourceAttributInterface;
|
|
|
|
/**
|
|
* Meta entities contain informations which describe sources.
|
|
* If you refer from a meta entity to an source be aware to catch infinite loops!
|
|
*
|
|
* @author kevinfrantz
|
|
*/
|
|
interface MetaInterface extends EntityInterface, SourceAttributInterface
|
|
{
|
|
}
|