8000
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 d5ab4c1 commit 31843cfCopy full SHA for 31843cf
src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Configuration.php
@@ -155,7 +155,13 @@ private function addRouterSection(ArrayNodeDefinition $rootNode)
155
->scalarNode('type')->end()
156
->scalarNode('http_port')->defaultValue(80)->end()
157
->scalarNode('https_port')->defaultValue(443)->end()
158
- ->scalarNode('strict_parameters')->defaultTrue()->end()
+ ->scalarNode('strict_parameters')
159
+ ->info(
160
+ 'set to false to disable exceptions when a route is '.
161
+ 'generated with invalid parameters (and return null instead)'
162
+ )
163
+ ->defaultTrue()
164
+ ->end()
165
->end()
166
167
0 commit comments