We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c590d4 commit ba4676eCopy full SHA for ba4676e
1 file changed
src/Core/IdToken.php
@@ -282,4 +282,24 @@ public function getSubJwk(): ?array
282
return $this->helpers->type()
283
->ensureArrayWithKeysAndValuesAsNonEmptyStrings($subJwk, ClaimsEnum::SubJwk->value);
284
}
285
+
286
287
+ protected function validate(): void
288
+ {
289
+ $this->validateByCallbacks(
290
+ $this->getIssuer(...),
291
+ $this->getSubject(...),
292
+ $this->getAudience(...),
293
+ $this->getExpirationTime(...),
294
+ $this->getIssuedAt(...),
295
+ $this->getAuthTime(...),
296
+ $this->getNonce(...),
297
+ $this->getAuthenticationContextClassReference(...),
298
+ $this->getAuthenticationMethodsReferences(...),
299
+ $this->getAuthorizedParty(...),
300
+ $this->getAccessTokenHash(...),
301
+ $this->getCodeHash(...),
302
+ $this->getSubJwk(...),
303
+ );
304
+ }
305
0 commit comments