Skip to content

Commit 8e9f4eb

Browse files
minor #61189 [Serializer] Remove require php version in tests (alamirault)
This PR was merged into the 8.0 branch. Discussion ---------- [Serializer] Remove require php version in tests | Q | A | ------------- | --- | Branch? | 8.0 | Bug fix? | no | New feature? | no <!-- if yes, also update src/**/CHANGELOG.md --> | Deprecations? | no <!-- if yes, also update UPGRADE-*.md and src/**/CHANGELOG.md --> | Issues | Fix #... <!-- prefix each issue number with "Fix #"; no need to create an issue if none exists, explain below --> | License | MIT PHP has been bump to `>=8.4` on branch 8.0 so we can remove these annotations Commits ------- d21a56c [Serializer] Remove require php version in tests
2 parents 19a8286 + d21a56c commit 8e9f4eb

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

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

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -178,9 +178,6 @@ public function testDenormalize()
178178
$this->assertEquals('bar', $obj->getBar());
179179
}
180180

181-
/**
182-
* @requires PHP 8.2
183-
*/
184181
public function testDenormalizeWithReadOnlyClass()
185182
{
186183
/** @var ChildClassDummy $object */
@@ -194,9 +191,6 @@ public function testDenormalizeWithReadOnlyClass()
194191
$this->assertSame('childProp', $object->childProp);
195192
}
196193

197-
/**
198-
* @requires PHP 8.4
199-
*/
200194
public function testDenormalizeWithAsymmetricPropertyVisibility()
201195
{
202196
/** @var SpecialBookDummy $object */

0 commit comments

Comments
 (0)