CacheHandler.php in Auth0 Single Sign On 8.2
Namespace
Auth0\SDK\Helpers\CacheFile
vendor/auth0/auth0-php/src/Helpers/Cache/CacheHandler.phpView source
<?php
namespace Auth0\SDK\Helpers\Cache;
/**
* @deprecated 5.7.0, switching to Psr\SimpleCache\CacheInterface in 7.0.0
*/
interface CacheHandler {
/**
*
* @param string $key
* @return mixed
*/
public function get($key);
/**
*
* @param string $key
*/
public function delete($key);
/**
*
* @param string $key
* @param mixed $value
*/
public function set($key, $value);
}
Interfaces
Name | Description |
---|---|
CacheHandler Deprecated |