@@ -46,6 +46,10 @@ variables:
4646:class: `Symfony\\ Component\\ HttpFoundation\\ SessionStorage\\ SessionStorageInterface `
4747 interface abstract session management ``session_*() `` functions.
4848
49+ ..note ::
50+
51+ Read more about the:doc: `HttpFoundation Component </components/http_foudation/introduction >`.
52+
4953``HttpKernel `` Component
5054~~~~~~~~~~~~~~~~~~~~~~~~
5155
@@ -60,7 +64,8 @@ Dependency Injection component and a powerful plugin system (bundles).
6064
6165..seealso ::
6266
63- Read more about:doc: `Dependency Injection </book/service_container >` and
67+ Read more about the:doc: `HttpKernel Component </components/http_kernel/introduction >`,
68+ :doc: `Dependency Injection </book/service_container >` and
6469:doc: `Bundles </cookbook/bundles/best_practices >`.
6570
6671``FrameworkBundle `` Bundle
@@ -258,6 +263,10 @@ uses a :class:`Symfony\\Component\\Routing\\RouterInterface` object to match
258263the ``Request `` and determine the Controller name (stored in the
259264``_controller `` ``Request `` attribute).
260265
266+ ..seealso ::
267+
268+ Read more on the:ref: `kernel.request event <component-http-kernel-kernel-request >`.
269+
261270..index ::
262271 single: Event; kernel.controller
263272
@@ -280,6 +289,10 @@ to modify the controller that should be executed::
280289 $event->setController($controller);
281290 }
282291
292+ ..seealso ::
293+
294+ Read more on the:ref: `kernel.controller event <component-http-kernel-kernel-controller >`.
295+
283296..index ::
284297 single: Event; kernel.view
285298
@@ -309,6 +322,10 @@ The value returned by the Controller is accessible via the
309322 $event->setResponse($response);
310323 }
311324
325+ ..seealso ::
326+
327+ Read more on the:ref: `kernel.view event <component-http-kernel-kernel-view >`.
328+
312329..index ::
313330 single: Event; kernel.response
314331
@@ -342,6 +359,10 @@ The ``FrameworkBundle`` registers several listeners:
342359 ``Surrogate-Control `` HTTP header when the Response needs to be parsed for
343360 ESI tags.
344361
362+ ..seealso ::
363+
364+ Read more on the:ref: `kernel.response event <component-http-kernel-kernel-response >`.
365+
345366..index ::
346367 single: Event; kernel.exception
347368
@@ -386,6 +407,10 @@ The event dispatcher is a standalone component that is responsible for much
386407of the underlying logic and flow behind a Symfony request. For more information,
387408see the:doc: `Event Dispatcher Component Documentation</components/event_dispatcher/introduction> `.
388409
410+ ..seealso ::
411+
412+ Read more on the:ref: `kernel.exception event <component-http-kernel-kernel-exception >`.
413+
389414..index ::
390415 single: Profiler
391416