17 lines
372 B
PHP
Raw Normal View History

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;
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
*/
interface MetaInterface extends EntityInterface, SourceAttributInterface
2018-10-28 15:25:32 +01:00
{
}