infinito/application/symfony/src/Domain/SourceManagement/SourceMemberManagerInterface.php
2019-01-19 22:52:49 +01:00

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;
}