public function StoreInterface::get in Auth0 Single Sign On 8.2
Get a value from the store by a given key
Parameters
string $key:
mixed|null $default:
Return value
mixed
2 methods override StoreInterface::get()
- EmptyStore::get in vendor/
auth0/ auth0-php/ src/ Store/ EmptyStore.php - Get a value from the store by a given key
- SessionStore::get in vendor/
auth0/ auth0-php/ src/ Store/ SessionStore.php - Gets persisted values identified by $key. If the value is not set, returns $default.
File
- vendor/
auth0/ auth0-php/ src/ Store/ StoreInterface.php, line 32
Class
Namespace
Auth0\SDK\StoreCode
public function get($key, $default = null);