Skip to content

Commit 6f86aa7

Browse files
Merge branch '7.4' into 8.0
* 7.4: [ObjectMapper] handle non existing property errors Fix AsCronTask not passing arguments to command [HttpFoundation] Fix deprecation in tests on PHP 8.5 Fix typo [Cache] Bump ext-redis to 6.2 and ext-relay to 0.11 minimum [VarExporter] Dump implicit-nullable types as explicit to prevent the corresponding deprecation [DependencyInjection] CS fix chore: PHP CS Fixer fixes Leverage get_error_handler() Various CS fixes Allow mixed root on CompoundConstraintTestCase validator [Serializer] Fix readonly property initialization from incorrect scope Update BrevoRequestParser.php [JsonPath] Improve escape sequence validation in name selector
2 parents 03859f3 + 90ff834 commit 6f86aa7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/Cloner/VarClonerTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ class VarClonerTest extends TestCase
2727
{
2828
public function testAddCaster()
2929
{
30-
$o1 = new class() {
30+
$o1 = new class {
3131
public string $p1 = 'p1';
3232
};
33-
$o2 = new class() {
33+
$o2 = new class {
3434
public string $p2 = 'p2';
3535
};
3636

0 commit comments

Comments
 (0)