@@ -127,7 +127,7 @@ method returns an array of arguments to pass to the Controller callable. The
127
127
default implementation automatically resolves the method arguments, based on
128
128
the Request attributes.
129
129
130
- .. sidebar :: Matching Controller method arguments from Request attributes
130
+ .. sidebar :: Matching Controller Method Arguments from Request Attributes
131
131
132
132
For each method argument, Symfony2 tries to get the value of a Request
133
133
attribute with the same name. If it is not defined, the argument default
@@ -364,6 +364,19 @@ The FrameworkBundle registers several listeners:
364
364
365
365
Read more on the :ref: `kernel.response event <component-http-kernel-kernel-response >`.
366
366
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
+
367
380
.. index ::
368
381
single: Event; kernel.terminate
369
382
@@ -492,7 +505,7 @@ token link (a string made of 13 random characters) to access the Web Profiler.
492
505
If the token is not clickable, it means that the profiler routes are not
493
506
registered (see below for configuration information).
494
507
495
- Analyzing Profiling data with the Web Profiler
508
+ Analyzing Profiling Data with the Web Profiler
496
509
..............................................
497
510
498
511
The Web Profiler is a visualization tool for profiling data that you can use
0 commit comments