aboutsummaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap')
-rw-r--r--bootstrap/Router.php2
1 files changed, 0 insertions, 2 deletions
diff --git a/bootstrap/Router.php b/bootstrap/Router.php
index 34e278c..c8f51e3 100644
--- a/bootstrap/Router.php
+++ b/bootstrap/Router.php
@@ -35,8 +35,6 @@ class Router
if (is_array($this->routes[$requestType]) && array_key_exists($uri, $this->routes[$requestType])) {
return $this->routes[$requestType][$uri];
}
- // throw new Exception('No route defined for this URI: "'.$uri.'"');
-
die(http_response_code(404));
}
}