mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 22:37:28 +01:00
20 lines
425 B
PHP
20 lines
425 B
PHP
<?php
|
|
|
|
namespace Infinito\Domain\SourceManagement;
|
|
|
|
use Doctrine\Common\Collections\Collection;
|
|
use Infinito\Entity\Source\SourceInterface;
|
|
|
|
/**
|
|
* Offers to get all source members over all dimensions.
|
|
*
|
|
* @author kevinfrantz
|
|
*/
|
|
interface SourceMemberInformationInterface
|
|
{
|
|
/**
|
|
* @return Collection|SourceInterface[] All Members which belong to a source
|
|
*/
|
|
public function getAllMembers(): Collection;
|
|
}
|