From aaebfcf4528ba0407350306afa7775e7429057d7 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Tue, 25 Oct 2016 17:19:06 +0800 Subject: [PATCH] CodeDoc/Data/Method.php --- CodeDoc/Data/Method.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CodeDoc/Data/Method.php b/CodeDoc/Data/Method.php index 0751c7a..4fdf57d 100644 --- a/CodeDoc/Data/Method.php +++ b/CodeDoc/Data/Method.php @@ -98,7 +98,7 @@ class PHP_CodeDoc_Data_Method extends PHP_CodeDoc_Data { return array( - "name" => $this->name == '__construct' ? ('new ' . $this->class) : $this->name, + "name" => $this->name , "parent" => "", "title" => "", "permname" => "", @@ -108,7 +108,7 @@ class PHP_CodeDoc_Data_Method extends PHP_CodeDoc_Data { array( - 'name' => $this->name, + 'name' => $this->name == '__construct' ? ('new ' . $this->class) : $this->name, 'purpose' => $this->description->short, 'stype' => 'function', '|xns' => 'Roo.doc', -- 2.39.2