コード例 #1
0
ファイル: index.php プロジェクト: kubasobek/semestralka
<?php

session_start();
define("ROOT_DIR", __DIR__);
include "autoload.php";
include "vendor/autoload.php";
include "src/Core/Exceptions.php";
$router = new \Core\Router();
$router->route();
$app = new \Core\Application();
$app->run($router->getController(), $router->getAction());