| 1 | <?php |
||
| 13 | final class EmailChannel implements Channel |
||
| 14 | { |
||
| 15 | public const NAME = 'email'; |
||
| 16 | |||
| 17 | /** @var Mailer */ |
||
| 18 | private $mailer; |
||
| 19 | |||
| 20 | 8 | public function __construct(Mailer $mailer) |
|
| 24 | |||
| 25 | 4 | public function getName(): string |
|
| 29 | |||
| 30 | 5 | public function send(Notification $notification, Recipient $recipient): void |
|
| 49 | } |
||
| 50 |