From f5169aba2c1012fa20b376bcddba89079a92c3e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20Hansl=C3=ADk?= Date: Tue, 15 Jan 2019 10:36:37 +0100 Subject: [PATCH] ParamTagValueNode: fix phpdoc for $parameterName (#20) `@param` tag without parameter name is not supported so `$parameterName` cannot be empty string --- src/Ast/PhpDoc/ParamTagValueNode.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ast/PhpDoc/ParamTagValueNode.php b/src/Ast/PhpDoc/ParamTagValueNode.php index c11cc85..04710a7 100644 --- a/src/Ast/PhpDoc/ParamTagValueNode.php +++ b/src/Ast/PhpDoc/ParamTagValueNode.php @@ -13,7 +13,7 @@ class ParamTagValueNode implements PhpDocTagValueNode /** @var bool */ public $isVariadic; - /** @var string (may be empty) */ + /** @var string */ public $parameterName; /** @var string (may be empty) */