diff --git a/HttpServer/Route/Node.php b/HttpServer/Route/Node.php index 8218f816..9f51821e 100644 --- a/HttpServer/Route/Node.php +++ b/HttpServer/Route/Node.php @@ -165,6 +165,9 @@ class Node extends HttpService if (is_null($reflect)) { return $this->normalHandler($this->handler); } + + var_dump($reflect); + $params = $this->_injectParameters; $handler = $this->handler; return static function () use ($reflect, $handler, $params) {