mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
Update extend/service/NodeService.php
This commit is contained in:
parent
1e8e3798aa
commit
71ab008f05
@ -124,11 +124,9 @@ class NodeService
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
$className = env('app_namespace') . str_replace('/', '\\', $matches[0]);
|
$className = env('app_namespace') . str_replace('/', '\\', $matches[0]);
|
||||||
if (!class_exists($className)) {
|
if (!class_exists($className)) continue;
|
||||||
continue;
|
|
||||||
}
|
|
||||||
foreach (get_class_methods($className) as $funcName) {
|
foreach (get_class_methods($className) as $funcName) {
|
||||||
if (strpos($funcName, '_') !== 0 && $funcName !== 'initialize') {
|
if (strpos($funcName, '_') !== 0 && $funcName !== 'initialize' && $funcName !== 'registerMiddleware') {
|
||||||
$nodes[] = self::parseNodeStr("{$matches[1]}/{$matches[2]}") . '/' . strtolower($funcName);
|
$nodes[] = self::parseNodeStr("{$matches[1]}/{$matches[2]}") . '/' . strtolower($funcName);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user