mirror of
https://github.com/laravel/laravel.git
synced 2025-02-20 11:53:14 +08:00
Remove redundant tap() helper in index.php (#5719)
This commit is contained in:
parent
5d22b2464c
commit
ca8e5d65da
@ -48,8 +48,8 @@ $app = require_once __DIR__.'/../bootstrap/app.php';
|
|||||||
|
|
||||||
$kernel = $app->make(Kernel::class);
|
$kernel = $app->make(Kernel::class);
|
||||||
|
|
||||||
$response = tap($kernel->handle(
|
$response = $kernel->handle(
|
||||||
$request = Request::capture()
|
$request = Request::capture()
|
||||||
))->send();
|
)->send();
|
||||||
|
|
||||||
$kernel->terminate($request, $response);
|
$kernel->terminate($request, $response);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user