@@ -127,7 +127,7 @@ method returns an array of arguments to pass to the Controller callable. The
127127default implementation automatically resolves the method arguments, based on
128128the Request attributes.
129129
130- .. sidebar :: Matching Controller method arguments from Request attributes
130+ .. sidebar :: Matching Controller Method Arguments from Request Attributes
131131
132132 For each method argument, Symfony2 tries to get the value of a Request
133133 attribute with the same name. If it is not defined, the argument default
@@ -364,6 +364,19 @@ The FrameworkBundle registers several listeners:
364364
365365 Read more on the :ref: `kernel.response event <component-http-kernel-kernel-response >`.
366366
367+ .. index ::
368+ single: Event; kernel.finish_request
369+
370+ ``kernel.finish_request `` Event
371+ ...............................
372+
373+ *Event Class *: :class: `Symfony\\ Component\\ HttpKernel\\ Event\\ FinishRequestEvent `
374+
375+ The purpose of this event is to to handle tasks that should be performed after
376+ the request has been handled but that do not need to modify the response.
377+ Event listeners for the ``kernel.finish_request `` event are called in both
378+ successful and exception cases.
379+
367380.. index ::
368381 single: Event; kernel.terminate
369382
@@ -492,7 +505,7 @@ token link (a string made of 13 random characters) to access the Web Profiler.
492505 If the token is not clickable, it means that the profiler routes are not
493506 registered (see below for configuration information).
494507
495- Analyzing Profiling data with the Web Profiler
508+ Analyzing Profiling Data with the Web Profiler
496509..............................................
497510
498511The Web Profiler is a visualization tool for profiling data that you can use
0 commit comments