diff --git a/Router/Router.php b/Router/Router.php index c73e630..936dd4f 100644 --- a/Router/Router.php +++ b/Router/Router.php @@ -21,7 +21,6 @@ class Router { $this->uri = is_countable($_SERVER['REQUEST_URI']) && count($_SERVER['REQUEST_URI']) > 1 ? rtrim($_SERVER['REQUEST_URI'], "/") : $_SERVER['REQUEST_URI']; $this->uri = str_replace($pathname, "", $this->uri); - var_dump($this->uri); $this->requestType = $_SERVER['REQUEST_METHOD']; $this->routes = []; $this->middleware = [];