-
-
Notifications
You must be signed in to change notification settings - Fork 9.8k
[SecurityBundle] Add missing fixXmlConfig() calls
#60996
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -90,6 +90,8 @@ public function addConfiguration(NodeBuilder $node): void | |
| $node | ||
| ->arrayNode($this->getKey()) | ||
| ->fixXmlConfig($this->getKey()) | ||
| ->fixXmlConfig('issuer') | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This one is for 7.3.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| ->fixXmlConfig('algorithm') | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This one can only work in 8.0 as it already exists in 7.4 (not even sure that this is a good idea as the semantic is not going to be the same between the 2 versions).
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| ->validate() | ||
| ->ifTrue(static fn ($v) => !isset($v['discovery']) && !isset($v['keyset'])) | ||
| ->thenInvalid('You must set either "discovery" or "keyset".') | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.