infinito/application/src/Entity/Attribut/RecieverAttribut.php
2018-11-04 23:59:58 +01:00

27 lines
423 B
PHP

<?php
namespace App\Entity\Attribut;
use App\Entity\Meta\RecieverInterface;
/**
* @author kevinfrantz
*/
trait RecieverAttribut
{
/**
* @var RecieverInterface
*/
protected $reciever;
public function setReciever(RecieverInterface $reciever): void
{
$this->reciever = $reciever;
}
public function getReciever(): RecieverInterface
{
return $this->reciever;
}
}