1 | <?php |
||
12 | final class ForgotPasswordResetEmail implements ForgotPasswordResetEmailInterface |
||
13 | { |
||
14 | use SmartObject; |
||
15 | |||
16 | public const NAME = 'forgot_password_reset_email'; |
||
17 | |||
18 | /** @var \SixtyEightPublishers\User\Common\Mail\MailSenderInterface */ |
||
19 | private $mailSender; |
||
20 | |||
21 | /** |
||
22 | * @param \SixtyEightPublishers\User\Common\Mail\MailSenderInterface $mailSender |
||
23 | */ |
||
24 | public function __construct(MailSenderInterface $mailSender) |
||
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | public function send(PasswordRequestInterface $request): void |
||
44 | } |
||
45 |