This commit is contained in:
Taylor Otwell 2020-06-24 13:03:02 -05:00
parent 58a98efb86
commit ae2af3adfc
1 changed files with 2 additions and 4 deletions

View File

@ -51,10 +51,8 @@
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class); $kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
$response = $kernel->handle( $response = tap($kernel->handle(
$request = Illuminate\Http\Request::capture() $request = Illuminate\Http\Request::capture()
); ))->send();
$response->send();
$kernel->terminate($request, $response); $kernel->terminate($request, $response);