You are here

interface StoreInterface in Auth0 Single Sign On 8.2

Hierarchy

Expanded class hierarchy of StoreInterface

All classes that implement StoreInterface

2 files declare their use of StoreInterface
Auth0.php in vendor/auth0/auth0-php/src/Auth0.php
SessionStateHandler.php in vendor/auth0/auth0-php/src/API/Helpers/State/SessionStateHandler.php

File

vendor/auth0/auth0-php/src/Store/StoreInterface.php, line 16

Namespace

Auth0\SDK\Store
View source
interface StoreInterface {

  /**
   * Set a value on the store
   *
   * @param string $key
   * @param mixed  $value
   */
  public function set($key, $value);

  /**
   * Get a value from the store by a given key
   *
   * @param  string     $key
   * @param  mixed|null $default
   * @return mixed
   */
  public function get($key, $default = null);

  /**
   * Remove a value from the store
   *
   * @param  string $key
   * @return mixed
   */
  public function delete($key);

}

Members

Namesort descending Modifiers Type Description Overrides
StoreInterface::delete public function Remove a value from the store 2
StoreInterface::get public function Get a value from the store by a given key 2
StoreInterface::set public function Set a value on the store 2