8000 CS fixes · symfony/symfony@4eac728 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4eac728

Browse files
CS fixes
1 parent 61e430f commit 4eac728

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/Symfony/Component/Serializer/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ CHANGELOG
77
* Deprecate the `csv_escape_char` context option of `CsvEncoder` and the `CsvEncoder::ESCAPE_CHAR_KEY` constant
88
* Deprecate `CsvEncoderContextBuilder::withEscapeChar()` method
99
* Add `SnakeCaseToCamelCaseNameConverter`
10+
* Support subclasses of `\DateTime` and `\DateTimeImmutable` for denormalization
1011

1112
7.1
1213
---
@@ -18,7 +19,6 @@ CHANGELOG
1819
* Add `CamelCaseToSnakeCaseNameConverter::REQUIRE_SNAKE_CASE_PROPERTIES` context option
1920
* Deprecate `AbstractNormalizerContextBuilder::withDefaultContructorArguments(?array $defaultContructorArguments)`, use `withDefaultConstructorArguments(?array $defaultConstructorArguments)` instead (note the missing `s` character in Contructor word in deprecated method)
2021
* Add `XmlEncoder::CDATA_WRAPPING_PATTERN` context option
21-
* Support subclasses of `\DateTime` and `\DateTimeImmutable` for denormalization
2222

2323
7.0
2424
---

src/Symfony/Component/Serializer/Tests/Normalizer/DateTimeNormalizerTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -397,6 +397,7 @@ public function testDenormalizeFormatMismatchThrowsException()
397397
class DateTimeChild extends \DateTime
398398
{
399399
}
400+
400401
class DateTimeImmutableChild extends \DateTimeImmutable
401402
{
402403
}

0 commit comments

Comments
 (0)
0