You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
phpvms/bootstrap/app.php

13 lines
191 B

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