phpvms/bootstrap/app.php
2018-08-26 16:40:04 +00:00

13 lines
191 B
PHP
Executable File

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