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