日志增加索引

This commit is contained in:
2020-08-26 08:58:32 +08:00
parent 190538d681
commit 4a7d2465f4
2 changed files with 14 additions and 14 deletions

View File

@@ -2,13 +2,12 @@
/**
* Laravel - A PHP Framework For Web Artisans
*
* @package Laravel
* @author Taylor Otwell <taylor@laravel.com>
* @package Laravel
*/
define('LARAVEL_START', microtime(true));
echo phpinfo();
/*
|--------------------------------------------------------------------------
| Register The Auto Loader
@@ -21,7 +20,7 @@ echo phpinfo();
|
*/
require __DIR__.'/../vendor/autoload.php';
require __DIR__ . '/../vendor/autoload.php';
/*
|--------------------------------------------------------------------------
@@ -35,7 +34,7 @@ require __DIR__.'/../vendor/autoload.php';
|
*/
$app = require_once __DIR__.'/../bootstrap/app.php';
$app = require_once __DIR__ . '/../bootstrap/app.php';
/*
|--------------------------------------------------------------------------