public function EmptyStore::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
Overrides StoreInterface::get
File
- vendor/
auth0/ auth0-php/ src/ Store/ EmptyStore.php, line 29
Class
- EmptyStore
- This class is a mockup store, that discards the values, its a way of saying no store.
Namespace
Auth0\SDK\StoreCode
public function get($key, $default = null) {
return $default;
}