diff --git a/src/AuthDecorator.php b/src/AuthDecorator.php index 0081fcb..4947874 100644 --- a/src/AuthDecorator.php +++ b/src/AuthDecorator.php @@ -4,7 +4,6 @@ namespace Drupal\mail_login; use Drupal\user\UserAuthInterface; use Drupal\Core\Entity\EntityTypeManagerInterface; -use Drupal\Core\Password\PasswordInterface; /** * Validates user authentication credentials. @@ -32,8 +31,6 @@ class AuthDecorator implements UserAuthInterface { * The original user authentication service. * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_managerk * The entity type manager. - * @param \Drupal\Core\Password\PasswordInterface $password_checker - * The password service. */ public function __construct(UserAuthInterface $user_auth, EntityTypeManagerInterface $entity_type_manager) { $this->userAuth = $user_auth;