Skip to content
This repository has been archived by the owner on Oct 29, 2020. It is now read-only.

Commit

Permalink
Fix CS.
Browse files Browse the repository at this point in the history
  • Loading branch information
guilhermeblanco committed Feb 28, 2014
1 parent b09f0db commit a6890ba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 3 additions & 1 deletion DependencyInjection/Configuration.php
Expand Up @@ -132,7 +132,9 @@ public function getConfigTreeBuilder()
->arrayNode('acl_cache')
->beforeNormalization()
->ifString()
->then(function($id) { return array('id' => $id); })
->then(function ($id) {
return array('id' => $id);
})
->end()
->addDefaultsIfNotSet()
->children()
Expand Down
1 change: 0 additions & 1 deletion composer.json
Expand Up @@ -37,7 +37,6 @@
"php": ">=5.3.2",
"symfony/security": "~2.2",
"symfony/framework-bundle": "~2.2",
"symfony/security-bundle": "~2.2",
"symfony/doctrine-bridge": "~2.2",
"doctrine/cache": "~1.3.0"
},
Expand Down

0 comments on commit a6890ba

Please sign in to comment.