Skip to content

Commit 037e66f

Browse files
bug symfony#61701 [SecurityBundle] Add missing fixXmlConfig() call for issuer (OskarStark)
This PR was merged into the 7.3 branch. Discussion ---------- [SecurityBundle] Add missing `fixXmlConfig()` call for `issuer` | Q | A | ------------- | --- | Branch? | 7.3 | Bug fix? | yes | New feature? | no | Deprecations? | no | Issues | Follows https://github.com/symfony/symfony/pull/60996/files#r2296715420 | License | MIT as requested by `@fabpot` Commits ------- ee68802 [SecurityBundle] Add missing `fixXmlConfig()` call for `issuer`
2 parents 365fe14 + ee68802 commit 037e66f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/AccessToken/OidcTokenHandlerFactory.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ public function addConfiguration(NodeBuilder $node): void
9191
$node
9292
->arrayNode($this->getKey())
9393
->fixXmlConfig($this->getKey())
94+
->fixXmlConfig('issuer')
9495
->validate()
9596
->ifTrue(static fn ($v) => !isset($v['algorithm']) && !isset($v['algorithms']))
9697
->thenInvalid('You must set either "algorithm" or "algorithms".')

0 commit comments

Comments
 (0)