You are here

NoCacheHandler.php in Auth0 Single Sign On 8.2

File

vendor/auth0/auth0-php/src/Helpers/Cache/NoCacheHandler.php
View source
<?php

namespace Auth0\SDK\Helpers\Cache;

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) {
  }

}

Classes

Namesort descending Description
NoCacheHandler