mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-26 21:44:02 +01:00
34 lines
721 B
PHP
34 lines
721 B
PHP
<?php
|
|
|
|
namespace App\Domain\SourceManagement;
|
|
|
|
use App\Entity\Source\SourceInterface;
|
|
|
|
/**
|
|
* Offers to add and remove source members and memberships.
|
|
*
|
|
* @author kevinfrantz
|
|
*/
|
|
interface SourceMemberManagerInterface
|
|
{
|
|
/**
|
|
* @param SourceInterface $member
|
|
*/
|
|
public function addMember(SourceInterface $member): void;
|
|
|
|
/**
|
|
* @param SourceInterface $member
|
|
*/
|
|
public function removeMember(SourceInterface $member): void;
|
|
|
|
/**
|
|
* @param SourceInterface $membership
|
|
*/
|
|
public function addMembership(SourceInterface $membership): void;
|
|
|
|
/**
|
|
* @param SourceInterface $membership
|
|
*/
|
|
public function removeMembership(SourceInterface $membership): void;
|
|
}
|