Skip to content

Commit db4539f

Browse files
sagikazarmarkStyleCIBot
authored andcommitted
Applied fixes from StyleCI
1 parent 614d55b commit db4539f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

DependencyInjection/Configuration.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,9 @@ public function getConfigTreeBuilder()
9797
->booleanNode('enabled') // @deprecated value auto in 1.3.0
9898
->beforeNormalization()
9999
->ifString()
100-
->then(function ($v) { return 'auto' === $v ? $this->debug : $v; })
100+
->then(function ($v) {
101+
return 'auto' === $v ? $this->debug : $v;
102+
})
101103
->end()
102104
->info('Turn the toolbar on or off. Defaults to kernel debug mode.')
103105
->defaultValue($this->debug)

0 commit comments

Comments
 (0)