8000 [FrameworkBundle] Fixed DefaultValue for session.auto_start in NodeDe… · symfony/symfony@88811f4 · GitHub
[go: up one dir, main page]

Skip to content

Commit 88811f4

Browse files
committed
[FrameworkBundle] Fixed DefaultValue for session.auto_start in NodeDefinition
This is just for consistency with the node type (Boolean)
1 parent 50a62da commit 88811f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ private function addSessionSection(ArrayNodeDefinition $rootNode)
179179
->children()
180180
->booleanNode('auto_start')
181181
->info('DEPRECATED! Session starts on demand')
182-
->defaultNull()
182+
->defaultFalse()
183183
->beforeNormalization()
184184
->ifTrue(function($v) { return null !== $v; })
185185
->then(function($v) {

0 commit comments

Comments
 (0)
0