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 614d55b commit db4539fCopy full SHA for db4539f
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