apply PSR-12 rules

This commit is contained in:
2022-07-13 10:41:23 +02:00
parent fd8a3c93ad
commit 2acb1c9fb6
40 changed files with 213 additions and 198 deletions

View File

@ -24,9 +24,9 @@ interface RecipientsListInterface
{
public function __construct(Client $client);
public function add(Recipient $recipient) : RecipientsListInterface;
public function add(Recipient $recipient): RecipientsListInterface;
public function clearRecipents() : RecipientsListInterface;
public function clearRecipents(): RecipientsListInterface;
public function getRecipients() : array;
}
public function getRecipients(): array;
}