2018-12-06 20:22:27 +01:00
|
|
|
<?php
|
|
|
|
|
2019-02-17 14:33:19 +01:00
|
|
|
namespace Infinito\Domain\SourceManagement;
|
2018-12-06 20:22:27 +01:00
|
|
|
|
|
|
|
use Doctrine\Common\Collections\Collection;
|
2019-02-17 14:33:19 +01:00
|
|
|
use Infinito\Entity\Source\SourceInterface;
|
2018-12-06 20:22:27 +01:00
|
|
|
|
2019-01-19 22:52:49 +01:00
|
|
|
/**
|
|
|
|
* 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;
|
|
|
|
}
|