mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-27 14:04:01 +01: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;
|
|
}
|