diff --git a/Annotation/Loader.php b/Annotation/Loader.php index 66e16dfd..ced4324a 100644 --- a/Annotation/Loader.php +++ b/Annotation/Loader.php @@ -233,7 +233,6 @@ class Loader extends BaseObject $path = '/' . trim($path, '/'); foreach ($this->_directory as $key => $_path) { $key = '/' . trim($key, '/'); - var_dump($key . '->' . $path); if (!str_starts_with($key, $path)) { continue; } @@ -395,7 +394,6 @@ class Loader extends BaseObject return; } foreach ($classes as $className) { - var_dump($className); $annotations = $this->_classes[$className] ?? null; if ($annotations === null) { continue; diff --git a/HttpServer/Route/Node.php b/HttpServer/Route/Node.php index 2bc0bbf8..c5264728 100644 --- a/HttpServer/Route/Node.php +++ b/HttpServer/Route/Node.php @@ -561,7 +561,6 @@ class Node extends HttpService private function runWith(): mixed { $requestParams = func_get_args(); - var_dump(...$requestParams); if (count($requestParams) > 0) { return call_user_func($this->callback, ...$requestParams); } else {