mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-14 06:07:18 +02:00
Implemented Reciever
This commit is contained in:
24
application/src/Entity/Attribut/RecieverAttribut.php
Normal file
24
application/src/Entity/Attribut/RecieverAttribut.php
Normal 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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user