mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-03-14 10:55:17 +01:00
18 lines
517 B
PHP
18 lines
517 B
PHP
<?php
|
|
|
|
namespace App\Entity\Meta;
|
|
|
|
use App\Entity\Attribut\MembersAttributInterface;
|
|
use App\Entity\Attribut\RightAttributInterface;
|
|
use App\Entity\Attribut\CollectionAttributInterface;
|
|
use App\Helper\DimensionHelperInterface;
|
|
|
|
/**
|
|
* It's neccessary to have an own reciever class, because if you would use a GroupSource it would lead to an infinite loop.
|
|
*
|
|
* @author kevinfrantz
|
|
*/
|
|
interface RecieverInterface extends MetaInterface, RightAttributInterface,CollectionAttributInterface,DimensionHelperInterface
|
|
{
|
|
}
|