You are here

public function TfaSetup::begin in Two-factor Authentication (TFA) 8

Run any begin setup processes.

File

src/TfaSetup.php, line 33

Class

TfaSetup
TFA Setup.

Namespace

Drupal\tfa

Code

public function begin() {

  // Invoke begin method on setup plugin.
  if (method_exists($this->setupPlugin, 'begin')) {
    $this->setupPlugin
      ->begin();
  }
}