| 1 | <?php |
||
| 14 | class Mailer implements MailerInterface |
||
| 15 | { |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var MailerAdapterInterface |
||
| 19 | */ |
||
| 20 | private $adapter; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Mailer constructor. |
||
| 24 | * |
||
| 25 | * @param MailerAdapterInterface $adapter |
||
| 26 | */ |
||
| 27 | public function __construct(MailerAdapterInterface $adapter) |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @param Mail $mail |
||
| 34 | * |
||
| 35 | * @return bool |
||
| 36 | */ |
||
| 37 | public function send(Mail $mail): bool |
||
| 41 | |||
| 42 | } |