From 4f19be326875908ee778764668cb0d60ab5411c0 Mon Sep 17 00:00:00 2001 From: Adam Mospan Date: Fri, 5 Nov 2021 08:17:53 +0200 Subject: [PATCH] Remove redundant tap() helper in index.php --- public/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/index.php b/public/index.php index 66ea93cd05d..002ee24d2a1 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);