Example #1
0
<?php

/**
 * @author Константин Харламов <*****@*****.**>
 * @link https://github.com/BoesesGenie/team-rex Проект на GitHub
 * 
 * TEAM.REX- Небольшой таск-менеджер
 * 
 * @copyright © 2014-2015 Константин Харламов. Контакты: <*****@*****.**>
 * @license http://www.gnu.org/licenses/gpl-3.0.ru.html GNU GENERAL PUBLIC LICENSE
 */
ini_set('display_errors', 1);
require_once '../App/init_autoload.php';
\App\library\controller\FrontController::run();
Example #2
0
 public static function run()
 {
     $instance = new FrontController();
     $instance->init();
     $instance->handleRequest();
 }