infinito/application/src/Entity/Attribut/RecieverAttributInterface.php
2018-09-14 00:18:21 +02:00

14 lines
207 B
PHP

<?php
namespace App\Entity\Attribut;
/**
* @author kevinfrantz
*/
interface RecieverAttributInterface
{
public function setReciever(string $type): void;
public function getReciever(): string;
}