mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-26 21:44:02 +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;
|
||
|
}
|
||
|
}
|