From ca8e5d65da361d070e637d0d82a8eb49b6a41afb Mon Sep 17 00:00:00 2001 From: Adam Mospan Date: Fri, 5 Nov 2021 15:00:12 +0200 Subject: [PATCH] Remove redundant tap() helper in index.php (#5719) --- public/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/index.php b/public/index.php index 66ea93cd..002ee24d 100644 --- a/public/index.php +++ b/public/index.php @@ -48,8 +48,8 @@ $kernel = $app->make(Kernel::class); -$response = tap($kernel->handle( +$response = $kernel->handle( $request = Request::capture() -))->send(); +)->send(); $kernel->terminate($request, $response);