| 1 | <?php |
||
| 10 | final class PasswordHasBeenResetEmail implements PasswordHasBeenResetEmailInterface |
||
| 11 | { |
||
| 12 | use Nette\SmartObject; |
||
| 13 | |||
| 14 | public const NAME = 'password_has_been_reset_email'; |
||
| 15 | |||
| 16 | /** @var \SixtyEightPublishers\User\Common\Mail\MailSenderInterface */ |
||
| 17 | private $mailSender; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param \SixtyEightPublishers\User\Common\Mail\MailSenderInterface $mailSender |
||
| 21 | */ |
||
| 22 | public function __construct(SixtyEightPublishers\User\Common\Mail\MailSenderInterface $mailSender) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * {@inheritdoc} |
||
| 29 | */ |
||
| 30 | public function send(SixtyEightPublishers\User\ForgotPassword\Entity\UserInterface $user): void |
||
| 42 | } |
||
| 43 |