diff --git a/HttpServer/Route/Node.php b/HttpServer/Route/Node.php index 58f41a65..7491fcdc 100644 --- a/HttpServer/Route/Node.php +++ b/HttpServer/Route/Node.php @@ -532,8 +532,6 @@ class Node extends HttpService if ($this->handler instanceof Closure) { return call_user_func($this->handler, ...$dispatchParams); } - - var_dump($this->callback, ...$dispatchParams); $validator = $this->getValidator(); if (!($validator instanceof Validator)) { return call_user_func($this->callback, ...$dispatchParams);