NoCacheHandler.php in Auth0 Single Sign On 8.2
Namespace
Auth0\SDK\Helpers\CacheFile
vendor/auth0/auth0-php/src/Helpers/Cache/NoCacheHandler.phpView source
<?php
namespace Auth0\SDK\Helpers\Cache;
class NoCacheHandler implements CacheHandler {
/**
*
* @param string $key
* @return null
*/
public function get($key) {
return null;
}
/**
*
* @param string $key
*/
public function delete($key) {
}
/**
*
* @param string $key
* @param mixed $value
*/
public function set($key, $value) {
}
}
Classes
Name | Description |
---|---|
NoCacheHandler |