Ejemplo n.º 1
0
 /**
  * {@inheritDoc}
  *
  * @param PasswordGeneratorInterface $passwordGenerator
  * @param MailServiceInterface $mailService
  */
 public function __construct(UserServiceOptionsInterface $options, ServiceManager $manager, PasswordGeneratorInterface $passwordGenerator, MailServiceInterface $mailService)
 {
     $this->setClassName($options->getUserEntityClass());
     parent::__construct($options, $manager);
     $this->setPasswordGenerator($passwordGenerator);
     $this->setMailService($mailService);
 }