function UserPasswordForm::create

Same name and namespace in other branches
  1. 8.9.x core/modules/user/src/Form/UserPasswordForm.php \Drupal\user\Form\UserPasswordForm::create()
  2. 10 core/modules/user/src/Form/UserPasswordForm.php \Drupal\user\Form\UserPasswordForm::create()
  3. 11.x core/modules/user/src/Form/UserPasswordForm.php \Drupal\user\Form\UserPasswordForm::create()

Overrides FormBase::create

File

core/modules/user/src/Form/UserPasswordForm.php, line 98

Class

UserPasswordForm
Provides a user password reset form.

Namespace

Drupal\user\Form

Code

public static function create(ContainerInterface $container) {
    return new static($container->get('entity_type.manager')
        ->getStorage('user'), $container->get('language_manager'), $container->get('config.factory'), $container->get('flood'), $container->get('typed_data_manager'), $container->get('email.validator'));
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.