Skip to content

Commit f11766d

Browse files
committed
Merge branch '6.4' into 7.0
* 6.4: Fix test
2 parents f09249c + ce3b2ab commit f11766d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Symfony/Component/PropertyAccess/Tests/Fixtures/TestClassMagicGet.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function __get(string $property)
4040
}
4141
}
4242

43-
public function __isset(string $property)
43+
public function __isset(string $property): bool
4444
{
4545
return \in_array($property, ['magicProperty', 'constantMagicProperty'], true);
4646
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1096,7 +1096,7 @@ public function __get($name)
10961096
}
10971097
}
10981098

1099-
public function __isset($name)
1099+
public function __isset($name): bool
11001100
{
11011101
return 'foo' === $name;
11021102
}

0 commit comments

Comments
 (0)