mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-11 06:47:31 +01:00
15 lines
324 B
PHP
15 lines
324 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Domain\SourceManagement;
|
||
|
|
||
|
use Doctrine\Common\Collections\Collection;
|
||
|
use App\Entity\Source\SourceInterface;
|
||
|
|
||
|
interface SourceMemberInformationInterface
|
||
|
{
|
||
|
/**
|
||
|
* @return Collection|SourceInterface[] All Members which belong to a source
|
||
|
*/
|
||
|
public function getAllMembers(): Collection;
|
||
|
}
|