mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-11 06:47:31 +01:00
14 lines
207 B
PHP
14 lines
207 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Entity\Attribut;
|
||
|
|
||
|
/**
|
||
|
* @author kevinfrantz
|
||
|
*/
|
||
|
interface RecieverAttributInterface
|
||
|
{
|
||
|
public function setReciever(string $type): void;
|
||
|
|
||
|
public function getReciever(): string;
|
||
|
}
|