Skip to content

Commit 21aba61

Browse files
PSR-2 fixes
1 parent 75ed961 commit 21aba61

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Tests/Constraints/ChoiceValidatorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public function testValidChoiceCallbackClosure()
8989
{
9090
$constraint = new Choice(array('callback' => function () {
9191
return array('foo', 'bar');
92-
},));
92+
}, ));
9393

9494
$this->validator->validate('bar', $constraint);
9595

Tests/Mapping/ClassMetadataFactoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public function testReadMetadataFromCache()
106106
->method('read')
107107
->will($this->returnValue($metadata));
108108

109-
$this->assertEquals($metadata,$factory->getMetadataFor(self::PARENTCLASS));
109+
$this->assertEquals($metadata, $factory->getMetadataFor(self::PARENTCLASS));
110110
}
111111
}
112112

0 commit comments

Comments
 (0)