From 152cafb3f7b7f98e27835bba2085621ae06b0760 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Tue, 15 Nov 2022 12:00:03 +0100 Subject: [PATCH] ensure docblock compatibility with PhpStan's docblock parser In their next releases both packages phpdocumentor/reflection-docblock and phpdocumentor/type-resolver will start using the docblock parser from PhpStan. --- src/Symfony/Component/PropertyInfo/Tests/Fixtures/Dummy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/PropertyInfo/Tests/Fixtures/Dummy.php b/src/Symfony/Component/PropertyInfo/Tests/Fixtures/Dummy.php index 420cdddae9768..9333bc74e00bf 100644 --- a/src/Symfony/Component/PropertyInfo/Tests/Fixtures/Dummy.php +++ b/src/Symfony/Component/PropertyInfo/Tests/Fixtures/Dummy.php @@ -84,7 +84,7 @@ class Dummy extends ParentDummy public $h; /** - * @var ?string|int + * @var string|int|null */ public $i;