Skip to content

Commit

Permalink
[FrameworkBundle] Add info to config
Browse files Browse the repository at this point in the history
  • Loading branch information
Seldaek committed Jun 11, 2012
1 parent d5ab4c1 commit 31843cf
Showing 1 changed file with 7 additions and 1 deletion.
Expand Up @@ -155,7 +155,13 @@ private function addRouterSection(ArrayNodeDefinition $rootNode)
->scalarNode('type')->end()
->scalarNode('http_port')->defaultValue(80)->end()
->scalarNode('https_port')->defaultValue(443)->end()
->scalarNode('strict_parameters')->defaultTrue()->end()
->scalarNode('strict_parameters')
->info(
'set to false to disable exceptions when a route is '.
'generated with invalid parameters (and return null instead)'
)
->defaultTrue()
->end()
->end()
->end()
->end()
Expand Down

0 comments on commit 31843cf

Please sign in to comment.