Skip to content

Commit

Permalink
fixed CS
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed May 20, 2012
1 parent f8b6720 commit 4706b23
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Tests/Extension/Core/Type/CheckboxTypeTest.php
Expand Up @@ -112,12 +112,10 @@ public function testTransformedData($data, $expected)
{
// present a binary status field as a checkbox
$transformer = new CallbackTransformer(
function ($value)
{
function ($value) {
return 'expedited' == $value;
},
function ($value)
{
function ($value) {
return $value ? 'expedited' : 'standard';
}
);
Expand Down

0 comments on commit 4706b23

Please sign in to comment.