From 8d819c565cc7315d48886830ce1367e080716280 Mon Sep 17 00:00:00 2001 From: dingguodong Date: Tue, 1 Aug 2023 10:02:33 +0800 Subject: [PATCH] * Correct the type in comments. --- framework/base/router.class.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/framework/base/router.class.php b/framework/base/router.class.php index 73c2832e27..342d711645 100644 --- a/framework/base/router.class.php +++ b/framework/base/router.class.php @@ -1604,7 +1604,7 @@ class baseRouter * Get the default valve and param type of the method calling. * * @access public - * @return void + * @return array */ public function getDefaultParams() { @@ -1825,7 +1825,7 @@ class baseRouter * @param string $moduleName the module name * @param string $ext the extension type, can be control|model|view|lang|config|zen|tao * @access public - * @return string the extension path. + * @return array the extension path. */ public function getModuleExtPath(string $moduleName, string $ext) { @@ -2091,7 +2091,7 @@ class baseRouter * @param string $mergedTargetDir * @param string $class model | zen | tao * @access public - * @return void + * @return string */ public function mergeTargetExtFiles(string $moduleName, array $extFiles, string $mergedTargetDir, string $class = 'model') {