Skip to content

Commit 84acd5d

Browse files
Merge pull request #101 from php-http/analysis-qrrAgQ
Applied fixes from StyleCI
2 parents 614d55b + db4539f commit 84acd5d

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)