mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-08-21 19:25:03 +02:00
16 lines
273 B
PHP
16 lines
273 B
PHP
<?php
|
|
|
|
namespace App\Entity\Attribut;
|
|
|
|
use App\Entity\Meta\RecieverInterface;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
interface RecieverAttributInterface
|
|
{
|
|
public function setReciever(RecieverInterface $reciever): void;
|
|
|
|
public function getReciever(): RecieverInterface;
|
|
}
|