mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-28 22:44:00 +01:00
11 lines
196 B
PHP
11 lines
196 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Domain\SourceManagement;
|
||
|
|
||
|
use Doctrine\Common\Collections\Collection;
|
||
|
|
||
|
interface SourceMembershipInformationInterface
|
||
|
{
|
||
|
public function getAllMemberships(): Collection;
|
||
|
}
|