We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8e9ec3 commit 7b40a95Copy full SHA for 7b40a95
src/Symfony/Component/Serializer/Tests/Normalizer/GetSetMethodNormalizerTest.php
@@ -798,7 +798,7 @@ interface GetSetMethodDummyInterface
798
799
class GetSetMethodDiscriminatedDummyOne implements GetSetMethodDummyInterface
800
{
801
- private string $url = 'URL_ONE';
+ private $url = 'URL_ONE';
802
803
public function getUrl(): string
804
@@ -813,7 +813,7 @@ public function setUrl(string $url): void
813
814
class GetSetMethodDiscriminatedDummyTwo implements GetSetMethodDummyInterface
815
816
- private string $url = 'URL_TWO';
+ private $url = 'URL_TWO';
817
818
819
0 commit comments