aboutsummaryrefslogtreecommitdiff
path: root/app/class/Routes.php
diff options
context:
space:
mode:
authorVincent Peugnet <33429034+vincent-peugnet@users.noreply.github.com>2020-12-22 12:35:31 +0100
committerGitHub <noreply@github.com>2020-12-22 12:35:31 +0100
commitf30ec46d410f4c0bf986929e132f8a9efd4d0530 (patch)
tree9baaa6e940c85e018273a48b410e24c94e32d8fb /app/class/Routes.php
parent8a8aebc3606c9ad7a59c93df90b2e591709bb717 (diff)
parentf6cc150d7052751d5c226ff8050db90d57355ed7 (diff)
downloadwcms-f30ec46d410f4c0bf986929e132f8a9efd4d0530.tar.gz
wcms-f30ec46d410f4c0bf986929e132f8a9efd4d0530.zip
Merge pull request #130 from n-peugnet/deps
build(deps): fix github ci
Diffstat (limited to 'app/class/Routes.php')
-rw-r--r--app/class/Routes.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/class/Routes.php b/app/class/Routes.php
index 0433079..db9b72a 100644
--- a/app/class/Routes.php
+++ b/app/class/Routes.php
@@ -80,7 +80,7 @@ class Routes
$methodName = $callableParts[1];
$controller = new $controllerName($router);
-
+
call_user_func_array(array($controller, $methodName), $match['params']);
} else {
header($_SERVER["SERVER_PROTOCOL"] . ' 404 Not Found');