aboutsummaryrefslogtreecommitdiffstats
path: root/core/namespace/Router.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/namespace/Router.php')
-rw-r--r--core/namespace/Router.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/namespace/Router.php b/core/namespace/Router.php
index 803a8e0..ffb3154 100644
--- a/core/namespace/Router.php
+++ b/core/namespace/Router.php
@@ -34,7 +34,7 @@ class Router {
#===============================================================================
public static function execute($path) {
$path = ltrim($path, '/');
- $route_found = FALSE;
+ $route_found = false;
foreach(self::$routes as $route) {
if($route['type'] === 'redirect') {
@@ -50,13 +50,13 @@ class Router {
# Remove the first element from matches which contains the whole string.
array_shift($matches);
- $route_found = TRUE;
+ $route_found = true;
call_user_func_array($route['callback'], $matches);
}
}
}
- if($route_found === FALSE) {
+ if($route_found === false) {
Application::error404();
}
}