You are here

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

CacheDecorator

Namespace

Auth0\Tests

Code

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