Skip to content

Commit 0e05ea7

Browse files
Merge branch '6.2' into 6.3
* 6.2: CS fix Fix test provider
2 parents 3494dfe + ecef374 commit 0e05ea7

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

Extension/Core/DataTransformer/BaseDateTimeTransformer.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
/**
1818
* @template TTransformedValue
19+
*
1920
* @implements DataTransformerInterface<\DateTimeInterface, TTransformedValue>
2021
*/
2122
abstract class BaseDateTimeTransformer implements DataTransformerInterface

Extension/Validator/ValidatorTypeGuesser.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ public function guessRequired(string $class, string $property): ?ValueGuess
7373
{
7474
return $this->guess($class, $property, function (Constraint $constraint) {
7575
return $this->guessRequiredForConstraint($constraint);
76-
// If we don't find any constraint telling otherwise, we can assume
77-
// that a field is not required (with LOW_CONFIDENCE)
76+
// If we don't find any constraint telling otherwise, we can assume
77+
// that a field is not required (with LOW_CONFIDENCE)
7878
}, false);
7979
}
8080

FormError.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,9 @@ public function getCause(): mixed
9999
*
100100
* This method must only be called once.
101101
*
102-
* @throws BadMethodCallException If the method is called more than once
103-
*
104102
* @return void
103+
*
104+
* @throws BadMethodCallException If the method is called more than once
105105
*/
106106
public function setOrigin(FormInterface $origin)
107107
{

NativeRequestHandler.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ public function __construct(ServerParams $params = null)
4040
}
4141

4242
/**
43-
* @throws Exception\UnexpectedTypeException If the $request is not null
44-
*
4543
* @return void
44+
*
45+
* @throws Exception\UnexpectedTypeException If the $request is not null
4646
*/
4747
public function handleRequest(FormInterface $form, mixed $request = null)
4848
{

Tests/Resources/TranslationFilesTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ public function testTranslationFileIsValid($filePath)
3131

3232
/**
3333
* @dataProvider provideTranslationFiles
34+
*
3435
* @group Legacy
3536
*/
3637
public function testTranslationFileIsValidWithoutEntityLoader($filePath)

0 commit comments

Comments
 (0)