1234567891011121314151617181920212223242526 |
- <?php
- /*
- * This file is part of the Jiannei/lumen-api-starter.
- *
- * (c) Jiannei <longjian.huang@foxmail.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- $app = require __DIR__.'/../bootstrap/app.php';
- /*
- |--------------------------------------------------------------------------
- | Run The Application
- |--------------------------------------------------------------------------
- |
- | Once we have the application, we can handle the incoming request
- | through the kernel, and send the associated response back to
- | the client's browser allowing them to enjoy the creative
- | and wonderful application we have prepared for them.
- |
- */
- $app->run();
|