We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent2ee1a64 commit7e09e82Copy full SHA for 7e09e82
book/internals.rst
@@ -172,7 +172,10 @@ Event):
172
#. Listeners of the ``kernel.response`` event can manipulate the ``Response``
173
(content and headers);
174
175
-#. The Response is returned.
+#. The Response is returned;
176
+
177
+#. Listeners of the ``kernel.terminate`` event can perform tasks after the
178
+ Response has been served.
179
180
If an Exception is thrown during processing, the ``kernel.exception`` is
181
notified and listeners are given a chance to convert the Exception to a
@@ -367,6 +370,8 @@ The FrameworkBundle registers several listeners:
367
370
``kernel.terminate`` Event
368
371
..........................
369
372
373
+*Event Class*::class:`Symfony\\Component\\HttpKernel\\Event\\PostResponseEvent`
374
375
The purpose of this event is to perform "heavier" tasks after the response
376
was already served to the client.
377