mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-03-14 19:05:18 +01:00
16 lines
392 B
PHP
16 lines
392 B
PHP
<?php
|
|
|
|
namespace App\Entity\Interfaces;
|
|
|
|
use App\Entity\Attribut\Interfaces\NodeAttributInterface;
|
|
use App\Entity\Attribut\Interfaces\RecieverAttributInterface;
|
|
use Doctrine\Common\Collections\ArrayCollection;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
interface RecieverGroupInterface extends NodeAttributInterface, RecieverAttributInterface
|
|
{
|
|
public function getAllRecievers(): ArrayCollection;
|
|
}
|