phpvms/bootstrap/app.php

13 lines
191 B
PHP
Raw Normal View History

2017-06-09 02:28:26 +08:00
<?php
2018-08-27 00:40:04 +08:00
if (!defined('LUMEN_START')) {
2017-08-15 07:41:55 +08:00
define('LUMEN_START', microtime(true));
}
2017-08-15 07:26:20 +08:00
2018-08-27 00:40:04 +08:00
include_once __DIR__.'/application.php';
2017-06-09 02:28:26 +08:00
2017-12-17 12:13:53 +08:00
$app = new Application();
$app->bindInterfaces();
2017-06-09 02:28:26 +08:00
return $app;