2018-10-28 15:25:32 +01:00
|
|
|
<?php
|
2018-10-29 19:01:00 +01:00
|
|
|
|
2018-10-28 15:25:32 +01:00
|
|
|
namespace App\Entity\Meta;
|
|
|
|
|
|
|
|
use App\Entity\EntityInterface;
|
2018-11-25 22:33:54 +01:00
|
|
|
use App\Entity\Attribut\SourceAttributInterface;
|
2018-10-28 15:25:32 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Meta entities contain informations which describe sources.
|
2018-10-29 19:01:00 +01:00
|
|
|
* If you refer from a meta entity to an source be aware to catch infinite loops!
|
|
|
|
*
|
2018-10-28 15:25:32 +01:00
|
|
|
* @author kevinfrantz
|
|
|
|
*/
|
2018-11-25 22:33:54 +01:00
|
|
|
interface MetaInterface extends EntityInterface, SourceAttributInterface
|
2018-10-28 15:25:32 +01:00
|
|
|
{
|
|
|
|
}
|