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.
2 parents 614d55b + db4539f commit 84acd5dCopy full SHA for 84acd5d
DependencyInjection/Configuration.php
@@ -97,7 +97,9 @@ public function getConfigTreeBuilder()
97
->booleanNode('enabled') // @deprecated value auto in 1.3.0
98
->beforeNormalization()
99
->ifString()
100
- ->then(function ($v) { return 'auto' === $v ? $this->debug : $v; })
+ ->then(function ($v) {
101
+ return 'auto' === $v ? $this->debug : $v;
102
+ })
103
->end()
104
->info('Turn the toolbar on or off. Defaults to kernel debug mode.')
105
->defaultValue($this->debug)
0 commit comments