phpvms/bootstrap/app.php

13 lines
192 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;