dbms_primeidc_init...1

This commit is contained in:
최준흠 2025-04-02 17:24:23 +09:00
parent 1cc441a01b
commit dc55482aab
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
},
"autoload": {
"psr-4": {
"lib\\": "lib/"
"lib\\Controllers\\": "lib/Controllers/"
}
}
}

View File

@ -68,7 +68,7 @@ abstract class App
$route = count($segments) ? $segments[0] : 'Home';
$route = $this->routeController($route);
$controller = $this->getModule() . $route;
if (class_exists($controller)) {
if (class_exists($controller, true)) {
$this->_controller = new $controller();
} else {
throw new \Exception("[{$controller}] 해당 Controller를 찾을수 없습니다.");