diff --git a/src/Attributes/Param.php b/src/Attributes/Param.php index 5db23b0..ebed651 100644 --- a/src/Attributes/Param.php +++ b/src/Attributes/Param.php @@ -267,6 +267,7 @@ function __clone() $temp = []; /** @var Param $item */ foreach ($this->subObject as $item){ + $item->isParsed = false; $temp[$item->name] = $item; } $this->subObject = $temp; @@ -312,4 +313,4 @@ public function jsonSerialize(): mixed 'parentStack'=>$this->parentStack ]; } -} \ No newline at end of file +}