From eef953026c5700c26dd856fa6fc0f6e4045d9175 Mon Sep 17 00:00:00 2001 From: huanglonghui Date: Wed, 5 Jun 2024 18:00:12 +0800 Subject: [PATCH] fix: Fix the parsing problem of subObject annotation properties --- src/Attributes/Param.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Attributes/Param.php b/src/Attributes/Param.php index ebed651..ea17cfd 100644 --- a/src/Attributes/Param.php +++ b/src/Attributes/Param.php @@ -268,6 +268,7 @@ function __clone() /** @var Param $item */ foreach ($this->subObject as $item){ $item->isParsed = false; + $item->value = null; $temp[$item->name] = $item; } $this->subObject = $temp;