You are here

public function CacheDecorator::delete in Auth0 Single Sign On 8.2

Parameters

string $key:

Overrides CacheHandler::delete

File

vendor/auth0/auth0-php/tests/Helpers/Cache/CacheDecorator.php, line 25

Class

CacheDecorator

Namespace

Auth0\Tests

Code

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