You are here

interface CacheHandler in Auth0 Single Sign On 8.2

Hierarchy

Expanded class hierarchy of CacheHandler

All classes that implement CacheHandler

Deprecated

5.7.0, switching to Psr\SimpleCache\CacheInterface in 7.0.0

4 files declare their use of CacheHandler
CacheDecorator.php in vendor/auth0/auth0-php/tests/Helpers/Cache/CacheDecorator.php
JWKFetcher.php in vendor/auth0/auth0-php/src/Helpers/JWKFetcher.php
JWKFetcherTest.php in vendor/auth0/auth0-php/tests/Helpers/JWKFetcherTest.php
JWTVerifier.php in vendor/auth0/auth0-php/src/JWTVerifier.php

File

vendor/auth0/auth0-php/src/Helpers/Cache/CacheHandler.php, line 8

Namespace

Auth0\SDK\Helpers\Cache
View source
interface CacheHandler {

  /**
   *
   * @param  string $key
   * @return mixed
   */
  public function get($key);

  /**
   *
   * @param string $key
   */
  public function delete($key);

  /**
   *
   * @param string $key
   * @param mixed  $value
   */
  public function set($key, $value);

}

Members

Namesort descending Modifiers Type Description Overrides
CacheHandler::delete public function 3
CacheHandler::get public function 3
CacheHandler::set public function 3