mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-25 21:22:21 +01:00
27 lines
478 B
PHP
27 lines
478 B
PHP
<?php
|
|
|
|
namespace App\Entity\Attribut;
|
|
|
|
use App\Entity\RecieverGroupInterface;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
trait RecieverGroupAttribut
|
|
{
|
|
/**
|
|
* @var RecieverGroupInterface
|
|
*/
|
|
protected $recieverGroup;
|
|
|
|
public function setRecieverGroup(RecieverGroupInterface $recieverGroup): void
|
|
{
|
|
$this->recieverGroup = $recieverGroup;
|
|
}
|
|
|
|
public function getRecieverGroup(): RecieverGroupInterface
|
|
{
|
|
return $this->recieverGroup;
|
|
}
|
|
}
|