| 1 | <?php |
||
| 12 | class PasswordMailerService implements PasswordMailerInterface |
||
| 13 | { |
||
| 14 | /** @var MailerInterface */ |
||
| 15 | private $mailer; |
||
| 16 | |||
| 17 | /** @var RouterInterface */ |
||
| 18 | private $router; |
||
| 19 | |||
| 20 | /** @var Address */ |
||
| 21 | private $from; |
||
| 22 | |||
| 23 | /** @var TranslatorInterface */ |
||
| 24 | private $translator; |
||
| 25 | |||
| 26 | public function __construct(MailerInterface $mailer, RouterInterface $router, TranslatorInterface $translator, Address $from) |
||
| 33 | |||
| 34 | public function sendPasswordForgotMail(UserInterface $user, string $locale) |
||
| 52 | } |
||
| 53 |