File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ You can build the doc locally with these commands:
29
29
# build the image...
30
30
$ docker build . -t symfony-docs
31
31
32
- # ...and serve it locally on http//: 127.0.0.1:8080
32
+ # ...and serve it locally on http:// 127.0.0.1:8080
33
33
# (if it's already in use, change the '8080' port by any other port)
34
34
$ docker run --rm -p 8080:80 symfony-docs
35
35
```
Original file line number Diff line number Diff line change @@ -142,10 +142,9 @@ their priorities:
142
142
143
143
**Event Class **: :class: `Symfony\\ Component\\ HttpKernel\\ Event\\ FinishRequestEvent `
144
144
145
- This event is dispatched after a :ref: `sub request <http-kernel-sub-requests >`
146
- has finished. It's useful to reset the global state of the application (for
147
- example, the translator listener resets the translator's locale to the one of
148
- the parent request)::
145
+ This event is dispatched after the ``kernel.response `` event. It's useful to reset
146
+ the global state of the application (for example, the translator listener resets
147
+ the translator's locale to the one of the parent request)::
149
148
150
149
public function onKernelFinishRequest(FinishRequestEvent $event)
151
150
{
You can’t perform that action at this time.
0 commit comments