Implemented Reciever

This commit is contained in:
Kevin Frantz
2018-09-14 00:18:21 +02:00
parent 8a5efb2e1f
commit 043c8d45b7
10 changed files with 107 additions and 5 deletions

View File

@@ -0,0 +1,24 @@
<?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;
}
}