Files
phpvms/bootstrap/app.php
2017-12-16 22:13:53 -06:00

17 lines
256 B
PHP
Executable File

<?php
if(!defined('LUMEN_START')) {
define('LUMEN_START', microtime(true));
}
if (!defined('DS')) {
define('DS', DIRECTORY_SEPARATOR);
}
include_once __DIR__ . '/application.php';
$app = new Application();
$app->bindInterfaces();
return $app;