mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-04-16 10:16:22 +02:00
24 lines
417 B
PHP
24 lines
417 B
PHP
<?php
|
|
namespace App\Entity\Source\Attribut;
|
|
|
|
use Doctrine\Common\Collections\Collection;
|
|
|
|
/**
|
|
* Allows to group other sources in a source
|
|
*
|
|
* @author kevinfrantz
|
|
*
|
|
*/
|
|
interface MembersAttributInterface
|
|
{
|
|
|
|
/**
|
|
* @param Collection $members
|
|
*/
|
|
public function setMembers(Collection $members): void;
|
|
|
|
/**
|
|
* @return Collection
|
|
*/
|
|
public function getMembers(): Collection;
|
|
} |