You are here

public function TfaTrustedBrowserSetup::deleteTrustedId in Two-factor Authentication (TFA) 8

Delete a trusted browser by its ID.

Parameters

int $id: ID of the browser to delete.

Return value

bool TRUE if successful otherwise FALSE.

File

src/Plugin/TfaSetup/TfaTrustedBrowserSetup.php, line 175

Class

TfaTrustedBrowserSetup
TFA Trusted Browser Setup Plugin.

Namespace

Drupal\tfa\Plugin\TfaSetup

Code

public function deleteTrustedId($id) {
  return $this
    ->deleteTrusted($id);
}