mailer = $mailer; } public static function getSubscribedEvents(): array { return [ EmailEvent::class => ['onMailEvent', 100], ]; } public function onMailEvent(EmailEvent $event) { $this->mailer->send($event->getEmail()); } }