Skip to content

Commit

Permalink
fix: use the request object resolved from the app container as parame…
Browse files Browse the repository at this point in the history
…ter to kernel's terminate method call (#52)
  • Loading branch information
countless-integers authored Jan 13, 2025
1 parent 5c1657d commit b2e273d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Codeception/Lib/Connector/Laravel.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ protected function doRequest($request): Response

$request = Request::createFromBase($request);
$response = $this->kernel->handle($request);
$this->getHttpKernel()->terminate($request, $response);
$this->getHttpKernel()->terminate($this->app['request'], $response);

return $response;
}
Expand Down

0 comments on commit b2e273d

Please sign in to comment.