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

20 lines
415 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;
/**
* Offers to get all source members over all dimensions.
*
* @author kevinfrantz
*/
2018-12-06 20:22:27 +01:00
interface SourceMemberInformationInterface
{
/**
* @return Collection|SourceInterface[] All Members which belong to a source
*/
public function getAllMembers(): Collection;
}