2018-09-21 15:48:23 +02:00
|
|
|
<?php
|
|
|
|
|
2018-10-28 15:25:32 +01:00
|
|
|
namespace App\Entity\Meta;
|
2018-09-21 15:48:23 +02:00
|
|
|
|
2018-10-31 17:19:10 +01:00
|
|
|
use App\Entity\Attribut\MembersAttributInterface;
|
2018-11-04 15:51:16 +01:00
|
|
|
use App\Entity\Attribut\RightAttributInterface;
|
2018-11-04 23:43:34 +01:00
|
|
|
use App\Entity\Attribut\CollectionAttributInterface;
|
|
|
|
use App\Helper\DimensionHelperInterface;
|
2018-09-21 15:48:23 +02:00
|
|
|
|
|
|
|
/**
|
2018-10-31 21:07:57 +01:00
|
|
|
* It's neccessary to have an own reciever class, because if you would use a GroupSource it would lead to an infinite loop.
|
|
|
|
*
|
2018-09-21 15:48:23 +02:00
|
|
|
* @author kevinfrantz
|
|
|
|
*/
|
2018-11-04 23:43:34 +01:00
|
|
|
interface RecieverInterface extends MetaInterface, RightAttributInterface,CollectionAttributInterface,DimensionHelperInterface
|
2018-09-21 15:48:23 +02:00
|
|
|
{
|
|
|
|
}
|