diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php index 43717a7c..8a037382 100644 --- a/DependencyInjection/Configuration.php +++ b/DependencyInjection/Configuration.php @@ -97,7 +97,9 @@ public function getConfigTreeBuilder() ->booleanNode('enabled') // @deprecated value auto in 1.3.0 ->beforeNormalization() ->ifString() - ->then(function ($v) { return 'auto' === $v ? $this->debug : $v; }) + ->then(function ($v) { + return 'auto' === $v ? $this->debug : $v; + }) ->end() ->info('Turn the toolbar on or off. Defaults to kernel debug mode.') ->defaultValue($this->debug)