inject logger, do not catch exceptions that should lead to termination

This commit is contained in:
2022-07-01 09:24:16 +02:00
parent 6854f12e13
commit c502926daf
18 changed files with 157 additions and 40 deletions

View File

@ -17,10 +17,13 @@ declare(strict_types=1);
namespace D3\LinkmobilityClient\RecipientsList;
use D3\LinkmobilityClient\Client;
use D3\LinkmobilityClient\ValueObject\Recipient;
interface RecipientsListInterface
{
public function __construct(Client $client);
public function add(Recipient $recipient) : RecipientsListInterface;
public function clearRecipents() : RecipientsListInterface;