コード例 #1
0
ファイル: shortcuts.php プロジェクト: pldin601/HomeMusic
/**
 * Adds default route to router pool
 * @param $callable
 */
function otherwise($callable)
{
    Router::getInstance()->otherwise($callable);
}
コード例 #2
0
ファイル: index.php プロジェクト: pldin601/Predictions
<?php

use app\core\router\Router;
require_once "app/loader.php";
$router = Router::getInstance();
$router->run();