private function Oauth2Client::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 The value to remove:
1 call to Oauth2Client::dontPersist()
- Oauth2Client::__construct in vendor/
auth0/ auth0-php/ src/ API/ Oauth2Client.php - BaseAuth0 Constructor.
File
- vendor/
auth0/ auth0-php/ src/ API/ Oauth2Client.php, line 242
Class
- Oauth2Client
- This class provides access to Auth0 Platform.
Namespace
Auth0\SDK\APICode
private function dontPersist($name) {
$key = array_search($name, $this->persistantMap);
if ($key !== false) {
unset($this->persistantMap[$key]);
}
}