Example #1
0
<?php

define('TEMPLATEPATH', __DIR__ . '/app/views/');
define('CONFIGPATH', __DIR__ . '/app/config/');
class_alias('Txs\\Environment\\Environment', 'App');
$app = new App();
$app->setEnvironment($production = false);
$app->registerCoreProviders();
require __DIR__ . "/app/routes.php";
$app->go();
Example #2
0
<?php

// line 3
//
//
//
// line 7
App::go();