minor #36344 [Security] Fixed build after LogoutListener changes (wouterj)

This PR was merged into the 5.1-dev branch.

Discussion
----------

[Security] Fixed build after LogoutListener changes

| Q             | A
| ------------- | ---
| Branch?       | master
| Bug fix?      | no
| New feature?  | no
| Deprecations? | no
| Tickets       | -
| License       | MIT
| Doc PR        | -

Commits
-------

253cc4ec41 Fixed build after LogoutListener changes
This commit is contained in:
Nicolas Grekas 2020-04-04 21:47:13 +02:00
commit 1c73297ad0
2 changed files with 3 additions and 2 deletions

View File

@ -206,7 +206,7 @@ class MainConfiguration implements ConfigurationInterface
->scalarNode('csrf_token_id')->defaultValue('logout')->end() ->scalarNode('csrf_token_id')->defaultValue('logout')->end()
->scalarNode('path')->defaultValue('/logout')->end() ->scalarNode('path')->defaultValue('/logout')->end()
->scalarNode('target')->defaultValue('/')->end() ->scalarNode('target')->defaultValue('/')->end()
->scalarNode('success_handler')->setDeprecated(sprintf('The "%%node%%" at path "%%path%%" is deprecated, register a listener on the "%s" event instead.', LogoutEvent::class))->end() ->scalarNode('success_handler')->setDeprecated('symfony/security-bundle', '5.1', sprintf('The "%%node%%" at path "%%path%%" is deprecated, register a listener on the "%s" event instead.', LogoutEvent::class))->end()
->booleanNode('invalidate_session')->defaultTrue()->end() ->booleanNode('invalidate_session')->defaultTrue()->end()
->end() ->end()
->fixXmlConfig('delete_cookie') ->fixXmlConfig('delete_cookie')
@ -231,7 +231,7 @@ class MainConfiguration implements ConfigurationInterface
->fixXmlConfig('handler') ->fixXmlConfig('handler')
->children() ->children()
->arrayNode('handlers') ->arrayNode('handlers')
->prototype('scalar')->setDeprecated(sprintf('The "%%node%%" at path "%%path%%" is deprecated, register a listener on the "%s" event instead.', LogoutEvent::class))->end() ->prototype('scalar')->setDeprecated('symfony/security-bundle', '5.1', sprintf('The "%%node%%" at path "%%path%%" is deprecated, register a listener on the "%s" event instead.', LogoutEvent::class))->end()
->end() ->end()
->end() ->end()
->end() ->end()

View File

@ -17,6 +17,7 @@
], ],
"require": { "require": {
"php": "^7.2.5", "php": "^7.2.5",
"symfony/deprecation-contracts": "^2.1",
"symfony/security-core": "^4.4.7|^5.0.7", "symfony/security-core": "^4.4.7|^5.0.7",
"symfony/http-foundation": "^4.4.7|^5.0.7", "symfony/http-foundation": "^4.4.7|^5.0.7",
"symfony/http-kernel": "^4.4|^5.0", "symfony/http-kernel": "^4.4|^5.0",