You are here

public function Oauth2Client::deleteAllPersistentData in Auth0 Single Sign On 8.2

Deletes all persistent data, for every mapped key.

1 call to Oauth2Client::deleteAllPersistentData()
Oauth2Client::logout in vendor/auth0/auth0-php/src/API/Oauth2Client.php
Logout (removes all persistent data)

File

vendor/auth0/auth0-php/src/API/Oauth2Client.php, line 563

Class

Oauth2Client
This class provides access to Auth0 Platform.

Namespace

Auth0\SDK\API

Code

public function deleteAllPersistentData() {
  foreach ($this->persistantMap as $key) {
    $this->store
      ->delete($key);
  }
}