This commit is contained in:
2021-04-19 17:11:11 +08:00
parent f1b35fb496
commit 00390ce060
+1 -1
View File
@@ -529,7 +529,6 @@ class Node extends HttpService
{ {
try { try {
$requestParam = func_get_args(); $requestParam = func_get_args();
var_dump($requestParam);
if ($this->handler instanceof Closure) { if ($this->handler instanceof Closure) {
return $this->runWith(...$requestParam); return $this->runWith(...$requestParam);
} }
@@ -561,6 +560,7 @@ class Node extends HttpService
*/ */
private function runWith(): mixed private function runWith(): mixed
{ {
var_dump(func_get_args());
return ($this->callback)(...func_get_args()); return ($this->callback)(...func_get_args());
return call_user_func($this->callback, ...func_get_args()); return call_user_func($this->callback, ...func_get_args());