From ae2af3adfc311c6bde53ee6ac5e17a422954d081 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 24 Jun 2020 13:03:02 -0500 Subject: [PATCH] tap --- public/index.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/public/index.php b/public/index.php index 4584cbcd..794bc350 100644 --- a/public/index.php +++ b/public/index.php @@ -51,10 +51,8 @@ $kernel = $app->make(Illuminate\Contracts\Http\Kernel::class); -$response = $kernel->handle( +$response = tap($kernel->handle( $request = Illuminate\Http\Request::capture() -); - -$response->send(); +))->send(); $kernel->terminate($request, $response);