13 lines
191 B
PHP
Executable File
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;
|