8000 [Serializer] Fix test · symfonyaml/symfony@7b40a95 · GitHub
[go: up one dir, main page]

Skip to content

Commit 7b40a95

Browse files
[Serializer] Fix test
1 parent b8e9ec3 commit 7b40a95

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -798,7 +798,7 @@ interface GetSetMethodDummyInterface
798798

799799
class GetSetMethodDiscriminatedDummyOne implements GetSetMethodDummyInterface
800800
{
801-
private string $url = 'URL_ONE';
801+
private $url = 'URL_ONE';
802802

803803
public function getUrl(): string
804804
{
@@ -813,7 +813,7 @@ public function setUrl(string $url): void
813813

814814
class GetSetMethodDiscriminatedDummyTwo implements GetSetMethodDummyInterface
815815
{
816-
private string $url = 'URL_TWO';
816+
private $url = 'URL_TWO';
817817

818818
public function getUrl(): string
819819
{

0 commit comments

Comments
 (0)
0