You are here

class NoCacheHandler in Auth0 Single Sign On 8.2

Hierarchy

Expanded class hierarchy of NoCacheHandler

3 files declare their use of NoCacheHandler
CacheTest.php in vendor/auth0/auth0-php/tests/Helpers/Cache/CacheTest.php
JWKFetcher.php in vendor/auth0/auth0-php/src/Helpers/JWKFetcher.php
JWKTests.php in vendor/auth0/auth0-php/tests/API/Helpers/JWKTests.php

File

vendor/auth0/auth0-php/src/Helpers/Cache/NoCacheHandler.php, line 5

Namespace

Auth0\SDK\Helpers\Cache
View source
class NoCacheHandler implements CacheHandler {

  /**
   *
   * @param  string $key
   * @return null
   */
  public function get($key) {
    return null;
  }

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

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

}

Members