Skip to content

Commit 6ccf8b0

Browse files
committed
Tweaks
1 parent 100109c commit 6ccf8b0

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

components/http_kernel.rst

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,10 @@ Installation
1515
1616
.. include:: /components/require_autoload.rst.inc
1717

18-
The Full Flow of a Request-Response lifecycle
19-
---------------------------------------------
18+
.. _the-workflow-of-a-request:
19+
20+
The Request-Response Lifecycle
21+
------------------------------
2022

2123
.. seealso::
2224

@@ -29,7 +31,7 @@ The Full Flow of a Request-Response lifecycle
2931
Every HTTP web interaction begins with a request and ends with a response.
3032
Your job as a developer is to create PHP code that reads the request information
3133
(e.g. the URL) and creates and returns a response (e.g. an HTML page or JSON string).
32-
This is a simplified overview of the request to response flow in Symfony applications:
34+
This is a simplified overview of the request-response lifecycle in Symfony applications:
3335

3436
#. The **user** asks for a **resource** in a **browser**;
3537
#. The **browser** sends a **request** to the **server**;
@@ -66,7 +68,7 @@ that system::
6668

6769
Internally, :method:`HttpKernel::handle() <Symfony\\Component\\HttpKernel\\HttpKernel::handle>` -
6870
the concrete implementation of :method:`HttpKernelInterface::handle() <Symfony\\Component\\HttpKernel\\HttpKernelInterface::handle>` -
69-
defines a process flow that starts with a :class:`Symfony\\Component\\HttpFoundation\\Request`
71+
defines a lifecycle that starts with a :class:`Symfony\\Component\\HttpFoundation\\Request`
7072
and ends with a :class:`Symfony\\Component\\HttpFoundation\\Response`.
7173

7274
.. raw:: html
@@ -75,7 +77,7 @@ and ends with a :class:`Symfony\\Component\\HttpFoundation\\Response`.
7577
alt="A flow diagram showing all HTTP Kernel events in the Request-Response lifecycle. Each event is numbered 1 to 8 and described in detail in the following subsections."
7678
></object>
7779

78-
The exact details of this flow are the key to understanding how the kernel
80+
The exact details of this lifecycle are the key to understanding how the kernel
7981
(and the Symfony Framework or any other library that uses the kernel) works.
8082

8183
HttpKernel: Driven by Events

0 commit comments

Comments
 (0)