You are here

public function Auth0::setStore in Auth0 Single Sign On 8.2

Set the storage engine that implements StoreInterface

Parameters

StoreInterface $store - storage engine to use.:

Return value

\Auth0\SDK\Auth0

1 call to Auth0::setStore()
Auth0::__construct in vendor/auth0/auth0-php/src/Auth0.php
BaseAuth0 Constructor.

File

vendor/auth0/auth0-php/src/Auth0.php, line 792

Class

Auth0
Class Auth0 Provides access to Auth0 authentication functionality.

Namespace

Auth0\SDK

Code

public function setStore(StoreInterface $store) {
  $this->store = $store;
  return $this;
}