Merge branch 'master' into sprint/biz17

This commit is contained in:
liugang
2022-11-21 13:08:59 +08:00
621 changed files with 18018 additions and 6726 deletions
+1 -1
View File
@@ -148,7 +148,7 @@ class devModel extends model
foreach($methods as $method)
{
if($method->class == 'baseControl' or $method->class == 'control' or $method->name == '__construct') continue;
$api = array('name' => $method->name, 'post' => false, 'param' => array());
$api = array('name' => $method->name, 'post' => false, 'param' => array(), 'desc' => '');
$methodReflect = new ReflectionMethod($module, $method->name);
foreach($methodReflect->getParameters() as $key => $param)
{