|
|
@@ -6,10 +6,7 @@
|
|
|
* @package Laravel
|
|
|
* @author Taylor Otwell <taylor@laravel.com>
|
|
|
*/
|
|
|
-if(isset($_GET['debug']) && $_GET['debug']=-99999){
|
|
|
- ini_set('display_errors',1);
|
|
|
- error_reporting(E_ALL);
|
|
|
-}
|
|
|
+
|
|
|
define('LARAVEL_START', microtime(true));
|
|
|
|
|
|
/*
|
|
|
@@ -52,6 +49,10 @@ $app = require_once __DIR__.'/../bootstrap/app.php';
|
|
|
|
|
|
|
*/
|
|
|
require_once __DIR__.'/function.php';
|
|
|
+if(isset($_GET['debug']) && $_GET['debug']=-99999){
|
|
|
+ ini_set('display_errors',1);
|
|
|
+ error_reporting(E_ALL);
|
|
|
+}
|
|
|
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
|
|
|
|
|
|
$response = $kernel->handle(
|