修复生成API文档相同分组方法名相同被覆盖问题

修复如两个Controller使用同一个API分组,相同的方法名会产生覆盖的问题
pull/215/head
HID丨emotion 2020-08-01 14:58:33 +08:00 committed by Gitee
parent bcd1b7fb9c
commit 2786259135
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ class Builder
if ($subdomain) {
$route = substr($route, 4);
}
$docslist[$section][$name] = [
$docslist[$section][$class . $name] = [
'id' => $counter,
'method' => is_array($docs['ApiMethod'][0]) ? $docs['ApiMethod'][0]['data'] : $docs['ApiMethod'][0],
'method_label' => $this->generateBadgeForMethod($docs),