public function SessionStateHandler::store in Auth0 Single Sign On 8.2
Store a given state value to be used for the state param value during authorization.
Parameters
string $state:
Return value
mixed|void
Overrides StateHandler::store
1 call to SessionStateHandler::store()
- SessionStateHandler::issue in vendor/
auth0/ auth0-php/ src/ API/ Helpers/ State/ SessionStateHandler.php - Generate state value to be used for the state param value during authorization.
File
- vendor/
auth0/ auth0-php/ src/ API/ Helpers/ State/ SessionStateHandler.php, line 57
Class
- SessionStateHandler
- Session based implementation of StateHandler.
Namespace
Auth0\SDK\API\Helpers\StateCode
public function store($state) {
$this->store
->set(self::STATE_NAME, $state);
}