mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-04-22 12:42:23 +02:00
15 lines
333 B
PHP
15 lines
333 B
PHP
<?php
|
|
|
|
namespace App\Domain\SourceManagement;
|
|
|
|
use Doctrine\Common\Collections\Collection;
|
|
use App\Entity\Source\SourceInterface;
|
|
|
|
interface SourceMembershipInformationInterface
|
|
{
|
|
/**
|
|
* @return Collection|SourceInterface[] all Sources which a Source belongs to
|
|
*/
|
|
public function getAllMemberships(): Collection;
|
|
}
|