mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-08-21 19:25:03 +02:00
16 lines
303 B
PHP
16 lines
303 B
PHP
<?php
|
|
|
|
namespace App\Entity\Attribut;
|
|
|
|
use App\Entity\RecieverGroupInterface;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
interface RecieverGroupAttributInterface
|
|
{
|
|
public function setRecieverGroup(RecieverGroupInterface $recieverGroup): void;
|
|
|
|
public function getRecieverGroup(): RecieverGroupInterface;
|
|
}
|