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

15 lines
333 B
PHP
Raw Normal View History

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