Change indentation.

This commit is contained in:
kj
2021-10-21 23:34:49 -04:00
parent 790930771f
commit 6fbf9a2a72
6 changed files with 1122 additions and 1122 deletions

View File

@ -8,8 +8,8 @@ spl_autoload_register(function ($className) {
$dir = dirname($fp);
$file = ROOT_DIR.'/src/'.$dir.'/'.$name.'.php';
if (file_exists($file)) {
require_once $file;
return;
require_once $file;
return;
}
});
@ -17,7 +17,7 @@ spl_autoload_register(function ($className) {
$routers = glob(ROOT_DIR.'/src/Routers/*.php');
foreach($routers as $file){
require_once($file);
require_once($file);
}
\Libs\Router::apply();