You are here

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

CacheDecorator

Namespace

Auth0\Tests

Code

public function set($key, $value) {
  $this
    ->addCount('set');
  return $this->cache
    ->set($key, $value);
}