From 5b1cd2e4f2592988cd9c5a2d29d7d9701c82bb0c Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Sat, 2 Nov 2019 18:20:45 +0100 Subject: [PATCH] Fix phpdoc for Param\Builer::$type --- lib/PhpParser/Builder/Param.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/PhpParser/Builder/Param.php b/lib/PhpParser/Builder/Param.php index 184813a..fd3118c 100644 --- a/lib/PhpParser/Builder/Param.php +++ b/lib/PhpParser/Builder/Param.php @@ -12,7 +12,7 @@ class Param implements PhpParser\Builder protected $default = null; - /** @var string|Node\Name|Node\NullableType|null */ + /** @var Node\Identifier|Node\Name|Node\NullableType|null */ protected $type = null; protected $byRef = false;