mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-11 06:47:31 +01:00
23 lines
427 B
PHP
23 lines
427 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Entity\Attribut;
|
||
|
|
||
|
use Doctrine\Common\Collections\Collection;
|
||
|
use App\Entity\Source\SourceInterface;
|
||
|
|
||
|
/**
|
||
|
* @author kevinfrantz
|
||
|
*/
|
||
|
interface MembersAttributInterface
|
||
|
{
|
||
|
/**
|
||
|
* @param Collection|SourceInterface[] $members
|
||
|
*/
|
||
|
public function setMembers(Collection $members): void;
|
||
|
|
||
|
/**
|
||
|
* @return Collection|SourceInterface[]
|
||
|
*/
|
||
|
public function getMembers(): Collection;
|
||
|
}
|