Optimized reciever

This commit is contained in:
Kevin Frantz
2018-10-31 21:07:57 +01:00
parent 48697c8b12
commit 0a18123384
3 changed files with 18 additions and 7 deletions

View File

@@ -2,14 +2,14 @@
namespace App\Entity\Meta;
use Doctrine\Common\Collections\ArrayCollection;
use App\Entity\Attribut\RelationAttributInterface;
use App\Entity\Attribut\MembersAttributInterface;
/**
* 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 RelationAttributInterface, MetaInterface, MembersAttributInterface
{
public function getAllRecievers(): ArrayCollection;
}