infinito/application/symfony/src/Domain/SourceManagement/SourceMemberInformationInterface.php

15 lines
324 B
PHP
Raw Normal View History

2018-12-06 20:22:27 +01:00
<?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;
}