You are here

public function MassPasswordReset::execute in Mass Password Change 8

Executes the plugin.

Overrides ExecutableInterface::execute

File

src/Plugin/Action/MassPasswordReset.php, line 79

Class

MassPasswordReset
Provides a Password reset action.

Namespace

Drupal\mass_password_change\Plugin\Action

Code

public function execute($account = NULL) {

  /** @var \Drupal\user\UserInterface $account */
  $this
    ->executeMultiple([
    $account,
  ]);
}