mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-27 22:14:01 +01:00
25 lines
342 B
PHP
25 lines
342 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Entity\Attribut;
|
||
|
|
||
|
/**
|
||
|
* @author kevinfrantz
|
||
|
*/
|
||
|
trait RecieverAttribut
|
||
|
{
|
||
|
/**
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $reciever;
|
||
|
|
||
|
public function setReciever(string $type): void
|
||
|
{
|
||
|
$this->reciever = $type;
|
||
|
}
|
||
|
|
||
|
public function getReciever(): string
|
||
|
{
|
||
|
return $this->reciever;
|
||
|
}
|
||
|
}
|