From 784325f9c62fc5e654dd9c081a88fd9f1416669b Mon Sep 17 00:00:00 2001 From: Johannes Kantz <67144859+JohannesKantz@users.noreply.github.com> Date: Thu, 8 Dec 2022 14:53:04 +0100 Subject: [PATCH] fix: remove print --- Router/Router.php | 1 - 1 file changed, 1 deletion(-) 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 = [];