infinito/application/symfony/src/Domain/SourceManagement/SourceMemberManagerInterface.php

34 lines
721 B
PHP
Raw Normal View History

2018-11-25 21:27:25 +01:00
<?php
namespace App\Domain\SourceManagement;
use App\Entity\Source\SourceInterface;
/**
* Offers to add and remove source members and memberships.
*
* @author kevinfrantz
*/
2018-11-25 21:27:25 +01:00
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;
}