Files
infinito/application/symfony/src/Domain/SourceManagement/SourceMemberManagerInterface.php
2019-02-17 14:33:19 +01:00

34 lines
731 B
PHP

<?php
namespace Infinito\Domain\SourceManagement;
use Infinito\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;
}