2018-09-14 00:18:21 +02:00
|
|
|
<?php
|
|
|
|
|
2018-10-03 16:14:15 +02:00
|
|
|
namespace App\Entity\Attribut;
|
2018-09-14 00:18:21 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @author kevinfrantz
|
|
|
|
*/
|
|
|
|
interface RecieverAttributInterface
|
|
|
|
{
|
|
|
|
public function setReciever(string $type): void;
|
|
|
|
|
|
|
|
public function getReciever(): string;
|
|
|
|
}
|