Add basic interface for MailerMethod

[MAILPOET-4115]
This commit is contained in:
Rostislav Wolny
2022-03-24 14:53:17 +01:00
committed by Veljko V
parent eb07872d13
commit b10c30a7b1
7 changed files with 19 additions and 12 deletions

View File

@ -0,0 +1,7 @@
<?php
namespace MailPoet\Mailer\Methods;
interface MailerMethod {
public function send($newsletter, $subscriber, $extraParams = []): array;
}