You are here

TfaSendInterface.php in Two-factor Authentication (TFA) 8

Namespace

Drupal\tfa\Plugin

File

src/Plugin/TfaSendInterface.php
View source
<?php

namespace Drupal\tfa\Plugin;


/**
 * Interface TfaSendInterface.
 *
 * Send plugins interact with the Tfa begin() process to communicate a code
 * during the start of the TFA process.
 *
 * Implementations of a send plugin should also be a validation plugin.
 */
interface TfaSendInterface {

  /**
   * TFA process begin.
   */
  public function begin();

}

Interfaces

Namesort descending Description
TfaSendInterface Interface TfaSendInterface.