Skip to content
This repository was archived by the owner on Jan 2, 2025. It is now read-only.

Commit 884d752

Browse files
committed
Merge pull request #38 from ekino/eko-patch-1
Added missing kernel.terminate on index.php
2 parents febf113 + 4582bf4 commit 884d752

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,12 @@ global $container;
4949

5050
$container = $kernel->getContainer();
5151

52-
$kernel->handle(Request::createFromGlobals())->send();
52+
$request = Request::createFromGlobals();
53+
54+
$response = $kernel->handle($request);
55+
$response->send();
56+
57+
$kernel->terminate($request, $response);
5358
```
5459
### Install the related Drupal module
5560

0 commit comments

Comments
 (0)