From 98d03f0cdf3c441826f03ea4162f7994a796d428 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Tue, 25 Oct 2016 17:20:49 +0800 Subject: [PATCH] CodeDoc/Data/Method.php --- CodeDoc/Data/Method.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CodeDoc/Data/Method.php b/CodeDoc/Data/Method.php index 4fdf57d..af9938e 100644 --- a/CodeDoc/Data/Method.php +++ b/CodeDoc/Data/Method.php @@ -113,11 +113,12 @@ class PHP_CodeDoc_Data_Method extends PHP_CodeDoc_Data { 'stype' => 'function', '|xns' => 'Roo.doc', 'xtype' => 'Entry', - 'isConstructor' => $this->name == '__construct' , + 'items' => array( array( 'name' => $this->name , 'is_static' => $this->isStatic ? true:false, + 'is_constructor' => $this->name == '__construct' , 'memberof' => $this->class, 'returndesc' => $this->name == '_construct' ? '' : $this->description->return->desc, 'returntype' => $this->name == '_construct' ? '' : $this->description->return->type, -- 2.39.2