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 ba25558 commit 70b3bc9Copy full SHA for 70b3bc9
src/Controllers/Federation/EntityStatementController.php
@@ -136,12 +136,12 @@ public function configuration(): Response
136
if ($trustMarkEntity->getSubject() !== $this->moduleConfig->getIssuer()) {
137
throw OidcServerException::serverError(sprintf(
138
'Trust Mark %s is not intended for this entity.',
139
- $trustMarkEntity->getIdentifier(),
+ $trustMarkEntity->getTrustMarkId(),
140
));
141
}
142
143
return [
144
- ClaimsEnum::Id->value => $trustMarkEntity->getIdentifier(),
+ ClaimsEnum::Id->value => $trustMarkEntity->getTrustMarkId(),
145
ClaimsEnum::TrustMark->value => $token,
146
];
147
}, $trustMarkTokens);
0 commit comments