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\TfaSetupCode
public function deleteTrustedId($id) {
return $this
->deleteTrusted($id);
}