Skip to content

Commit ecef374

Browse files
Merge branch '5.4' into 6.2
* 5.4: CS fix Fix test provider
2 parents 7e291ee + 287ec3f commit ecef374

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
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
@@ -75,8 +75,8 @@ public function guessRequired(string $class, string $property): ?ValueGuess
7575
{
7676
return $this->guess($class, $property, function (Constraint $constraint) {
7777
return $this->guessRequiredForConstraint($constraint);
78-
// If we don't find any constraint telling otherwise, we can assume
79-
// that a field is not required (with LOW_CONFIDENCE)
78+
// If we don't find any constraint telling otherwise, we can assume
79+
// that a field is not required (with LOW_CONFIDENCE)
8080
}, false);
8181
}
8282

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)