We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76c5b22 commit 8461589Copy full SHA for 8461589
src/Factories/Entities/AccessTokenEntityFactory.php
@@ -110,6 +110,7 @@ public function fromState(array $state): AccessTokenEntity
110
111
$boundClientId = empty($state['bound_client_id']) ? null : (string)$state['bound_client_id'];
112
$boundRedirectUri = empty($state['bound_redirect_uri']) ? null : (string)$state['bound_redirect_uri'];
113
+ $issuerState = empty($state['issuer_state']) ? null : (string)$state['issuer_state'];
114
115
return $this->fromData(
116
$id,
@@ -124,6 +125,7 @@ public function fromState(array $state): AccessTokenEntity
124
125
$authorizationDetails,
126
$boundClientId,
127
$boundRedirectUri,
128
+ $issuerState,
129
);
130
}
131
0 commit comments