File tree
Expand file treeCollapse file tree1 file changed
+4
-1
lines changed Expand file treeCollapse file tree1 file changed
+4
-1
lines changed Original file line number | Diff line number | Diff line change |
---|
@@ -155,7 +155,10 @@ kernel::
|
155 | 155 | $kernel->loadClassCache();
|
156 | 156 | // wrap the default AppKernel with the AppCache one
|
157 | 157 | $kernel = new AppCache($kernel);
|
158 |
| -$kernel->handle(Request::createFromGlobals())->send(); |
| 158 | +$request = Request::createFromGlobals(); |
| 159 | +$response = $kernel->handle($request); |
| 160 | +$response->send(); |
| 161 | +$kernel->terminate($request, $response); |
159 | 162 |
|
160 | 163 | The caching kernel will immediately act as a reverse proxy - caching responses
|
161 | 164 | from your application and returning them to the client.
|
|
You can’t perform that action at this time.
0 commit comments