Skip to content

Commit

Permalink
Fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
Phobetor committed Nov 5, 2014
1 parent 75ad185 commit 30c05ef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,13 @@ private function getClustersNode()
->defaultNull()
->beforeNormalization()
->ifTrue(
function($v) {
return $v === 'true' || $v === 'false';
function ($v) {
return $v === 'true' || $v === 'false';
}
)
->then(
function($v) {
return (bool) $v;
function ($v) {
return (bool) $v;
}
)
->end()
Expand Down

0 comments on commit 30c05ef

Please sign in to comment.