Skip to content

Commit 4b566c8

Browse files
committed
Fix CS
1 parent b8d6972 commit 4b566c8

File tree

3 files changed

+295
-295
lines changed

3 files changed

+295
-295
lines changed

DataCollector/ValidatorDataCollector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function __construct(TraceableValidator $validator)
4242
*
4343
* @param \Throwable|null $exception
4444
*/
45-
public function collect(Request $request, Response $response/*, \Throwable $exception = null*/)
45+
public function collect(Request $request, Response $response/* , \Throwable $exception = null */)
4646
{
4747
// Everything is collected once, on kernel terminate.
4848
}

Tests/Constraints/AbstractComparisonValidatorTestCase.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,10 @@ public function testThrowsConstraintExceptionIfBothValueAndPropertyPath()
9191
{
9292
$this->expectException(ConstraintDefinitionException::class);
9393
$this->expectExceptionMessage('requires only one of the "value" or "propertyPath" options to be set, not both.');
94-
$this->createConstraint(([
94+
$this->createConstraint([
9595
'value' => 'value',
9696
'propertyPath' => 'propertyPath',
97-
]));
97+
]);
9898
}
9999

100100
/**

0 commit comments

Comments
 (0)