infinito/application/src/Entity/Attribut/RecieverAttribut.php

25 lines
342 B
PHP
Raw Normal View History

2018-09-14 00:18:21 +02:00
<?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;
}
}