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,13 @@
<?php
namespace App\Entity\Attribut;
/**
* @author kevinfrantz
*/
interface RecieverAttributInterface
{
public function setReciever(string $type): void;
public function getReciever(): string;
}