invoke($invoke['class'], $invoke['method'], $params); $check = isset($result[$invoke['addons_name']]) && is_array($result[$invoke['addons_name']]); if ($check) { $invokes_result = array_merge($invokes_result, $result); } } return $invokes_result; } /** * 验证调用结果 * @param mixed $return * @return boolean */ protected function validateInvokeResult($return = null): bool { return true; } }