You are here

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

Delete all persisted data

Return value

void

1 call to Auth0::deleteAllPersistentData()
Auth0::logout in vendor/auth0/auth0-php/src/Auth0.php
Delete any persistent data and clear out all stored properties

File

vendor/auth0/auth0-php/src/Auth0.php, line 763

Class

Auth0
Class Auth0 Provides access to Auth0 authentication functionality.

Namespace

Auth0\SDK

Code

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