diff --git a/HttpServer/Route/Node.php b/HttpServer/Route/Node.php index e245df26..6c21b043 100644 --- a/HttpServer/Route/Node.php +++ b/HttpServer/Route/Node.php @@ -561,6 +561,7 @@ class Node extends HttpService private function runWith(): mixed { $requestParams = func_get_args(); + var_dump($requestParams); if (func_num_args() > 0) { return call_user_func($this->callback, ...$requestParams); } else {