Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
18 | public function __construct(EventDispatcherInterface $dispatcher, Swift_Mailer $mailer, TranslatorInterface $translator, $emailFrom) |
||
19 | { |
||
20 | $this->mailer = $mailer; |
||
21 | $this->translator = $translator; |
||
22 | $this->emailFrom = $emailFrom; |
||
23 | |||
24 | $dispatcher->addListener(PasswordResetTokenCreated::NAME, [$this, 'onPasswordResetTokenCreated']); |
||
25 | } |
||
26 | |||
38 |