diff --git a/app/Bootstrap.php b/app/Bootstrap.php index 6f4fd36..5883ec8 100644 --- a/app/Bootstrap.php +++ b/app/Bootstrap.php @@ -20,7 +20,6 @@ Class Autoloader { foreach ($files as $key => $file) { if (strtolower($file->getFilename()) === strtolower($filename) && $file->isReadable()) { - echo $file->getPathname(); include_once $file->getPathname(); return; } @@ -64,4 +63,4 @@ $userManager = new UserManager(); // import routes -require_once './Routes.php'; +require_once '../app/Routes.php';