private function Auth0::dontPersist in Auth0 Single Sign On 8.2
Removes $name from the persistantMap, thus not persisting it when we set the value.
Parameters
string $name - value to remove from persistence.:
Return value
void
1 call to Auth0::dontPersist()
- Auth0::__construct in vendor/
auth0/ auth0-php/ src/ Auth0.php - BaseAuth0 Constructor.
File
- vendor/
auth0/ auth0-php/ src/ Auth0.php, line 777
Class
- Auth0
- Class Auth0 Provides access to Auth0 authentication functionality.
Namespace
Auth0\SDKCode
private function dontPersist($name) {
$key = array_search($name, $this->persistantMap);
if ($key !== false) {
unset($this->persistantMap[$key]);
}
}