From 00390ce060052ec751f0ea9a8c4a91cc01d7068f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Mon, 19 Apr 2021 17:11:11 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HttpServer/Route/Node.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HttpServer/Route/Node.php b/HttpServer/Route/Node.php index e0479109..3e9d50ca 100644 --- a/HttpServer/Route/Node.php +++ b/HttpServer/Route/Node.php @@ -529,7 +529,6 @@ class Node extends HttpService { try { $requestParam = func_get_args(); - var_dump($requestParam); if ($this->handler instanceof Closure) { return $this->runWith(...$requestParam); } @@ -561,6 +560,7 @@ class Node extends HttpService */ private function runWith(): mixed { + var_dump(func_get_args()); return ($this->callback)(...func_get_args()); return call_user_func($this->callback, ...func_get_args());