public function MassPasswordChangeConfirm::__construct in Mass Password Change 8
Constructs a new MassPasswordChangeConfirm.
Parameters
\Drupal\Core\TempStore\PrivateTempStoreFactory $temp_store_factory: The temp store factory.
\Drupal\user\UserStorageInterface $userStorage: The user storage.
File
- src/Form/ MassPasswordChangeConfirm.php, line 39 
Class
- MassPasswordChangeConfirm
- Provides a confirmation form for mass password change action.
Namespace
Drupal\mass_password_change\FormCode
public function __construct(PrivateTempStoreFactory $temp_store_factory, UserStorageInterface $userStorage) {
  $this->tempStoreFactory = $temp_store_factory;
  $this->userStorage = $userStorage;
}