2018-09-21 15:48:23 +02:00
|
|
|
<?php
|
|
|
|
|
2018-10-03 15:50:46 +02:00
|
|
|
namespace App\Entity;
|
2018-09-21 15:48:23 +02:00
|
|
|
|
2018-10-03 16:14:15 +02:00
|
|
|
use App\Entity\Attribut\RecieverAttributInterface;
|
2018-09-21 15:48:23 +02:00
|
|
|
use Doctrine\Common\Collections\ArrayCollection;
|
2018-10-27 14:56:26 +02:00
|
|
|
use App\Entity\Attribut\RelationAttributInterface;
|
2018-09-21 15:48:23 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @author kevinfrantz
|
|
|
|
*/
|
2018-10-27 14:56:26 +02:00
|
|
|
interface RecieverGroupInterface extends RelationAttributInterface, RecieverAttributInterface
|
2018-09-21 15:48:23 +02:00
|
|
|
{
|
|
|
|
public function getAllRecievers(): ArrayCollection;
|
|
|
|
}
|