From 10d6d57ca7921534c0f02abf05a8e7188b48635b Mon Sep 17 00:00:00 2001 From: Christopher Davis <chris@pmg.com> Date: Sat, 6 Nov 2021 07:37:42 -0500 Subject: [PATCH] Remove Some Trailing Comma --- .../Annotations/SymfonyConstraintAnnotationReaderTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tests/ModelDescriber/Annotations/SymfonyConstraintAnnotationReaderTest.php b/Tests/ModelDescriber/Annotations/SymfonyConstraintAnnotationReaderTest.php index d9e84e4..4baed85 100644 --- a/Tests/ModelDescriber/Annotations/SymfonyConstraintAnnotationReaderTest.php +++ b/Tests/ModelDescriber/Annotations/SymfonyConstraintAnnotationReaderTest.php @@ -488,7 +488,7 @@ class SymfonyConstraintAnnotationReaderTest extends TestCase $reader->updateProperty( new \ReflectionProperty($entity, 'property1'), $schema->properties[0], - ['other'], + ['other'] ); $this->assertSame(OA\UNDEFINED, $schema->required, 'should not have read constraint in default group'); @@ -512,7 +512,7 @@ class SymfonyConstraintAnnotationReaderTest extends TestCase $reader->updateProperty( new \ReflectionProperty($entity, 'property1'), $schema->properties[0], - ['other', Constraint::DEFAULT_GROUP], + ['other', Constraint::DEFAULT_GROUP] ); $this->assertSame(['property1'], $schema->required, 'should have read constraint in default group');