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

20 lines
423 B
PHP
Raw Normal View History

<?php
namespace Infinito\Domain\SourceManagement;
use Doctrine\Common\Collections\Collection;
use Infinito\Entity\Source\SourceInterface;
/**
* Offers to get all memberships of a source.
*
* @author kevinfrantz
*/
interface SourceMembershipInformationInterface
{
2018-12-06 20:22:27 +01:00
/**
* @return Collection|SourceInterface[] all Sources which a Source belongs to
*/
public function getAllMemberships(): Collection;
}