/**
  * @param ResetPasswordForm $resetPasswordForm
  */
 public function __construct(ResetPasswordForm $resetPasswordForm)
 {
     parent::__construct();
     $this->resetPasswordForm = $resetPasswordForm;
 }
 /**
  * @param RegistrationForm $registrationForm
  */
 public function __construct(RegistrationForm $registrationForm)
 {
     parent::__construct();
     $this->registrationForm = $registrationForm;
 }
Beispiel #3
0
 /**
  * @param LoginForm             $loginForm
  * @param AuthenticationService $authService
  */
 public function __construct(LoginForm $loginForm, AuthenticationService $authService)
 {
     parent::__construct();
     $this->loginForm = $loginForm;
     $this->authService = $authService;
 }
 /**
  * @param ContactForm $contactForm
  */
 public function __construct(ContactForm $contactForm)
 {
     parent::__construct();
     $this->contactForm = $contactForm;
 }
 /**
  * @param NewPasswordForm $newPasswordForm
  */
 public function __construct(NewPasswordForm $newPasswordForm)
 {
     parent::__construct();
     $this->newPasswordForm = $newPasswordForm;
 }
 /**
  * @param SettingsForm $settingsForm
  */
 public function __construct(SettingsForm $settingsForm)
 {
     parent::__construct();
     $this->settingsForm = $settingsForm;
 }