public function CacheDecorator::get in Auth0 Single Sign On 8.2
Parameters
string $key:
Return value
mixed
Overrides CacheHandler::get
File
- vendor/
auth0/ auth0-php/ tests/ Helpers/ Cache/ CacheDecorator.php, line 19
Class
Namespace
Auth0\TestsCode
public function get($key) {
$this
->addCount('get');
return $this->cache
->get($key);
}