Skip to content

Commit ca8e5d6

Browse files
authored
Remove redundant tap() helper in index.php (laravel#5719)
1 parent 5d22b24 commit ca8e5d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

public/index.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@
4848

4949
$kernel = $app->make(Kernel::class);
5050

51-
$response = tap($kernel->handle(
51+
$response = $kernel->handle(
5252
$request = Request::capture()
53-
))->send();
53+
)->send();
5454

5555
$kernel->terminate($request, $response);

0 commit comments

Comments
 (0)