Skip to content

Commit 100109c

Browse files
committed
minor #19604 chore: replace workflow by flow and add more context (94noni)
This PR was merged into the 5.4 branch. Discussion ---------- chore: replace `workflow` by `flow` and add more context idea: add more context that its a request/response logic (actually we read more request than response) swap the word workflow to flow (ref #19603 and the kernel flow) Commits ------- 42c8fd9 chore: replace `workflow` by `flow` and add more context
2 parents c17e84f + 42c8fd9 commit 100109c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

components/http_kernel.rst

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

18-
The Workflow of a Request
19-
-------------------------
18+
The Full Flow of a Request-Response lifecycle
19+
---------------------------------------------
2020

2121
.. seealso::
2222

@@ -29,7 +29,7 @@ The Workflow of a Request
2929
Every HTTP web interaction begins with a request and ends with a response.
3030
Your job as a developer is to create PHP code that reads the request information
3131
(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 workflow in Symfony applications:
32+
This is a simplified overview of the request to response flow in Symfony applications:
3333

3434
#. The **user** asks for a **resource** in a **browser**;
3535
#. The **browser** sends a **request** to the **server**;
@@ -66,7 +66,7 @@ that system::
6666

6767
Internally, :method:`HttpKernel::handle() <Symfony\\Component\\HttpKernel\\HttpKernel::handle>` -
6868
the concrete implementation of :method:`HttpKernelInterface::handle() <Symfony\\Component\\HttpKernel\\HttpKernelInterface::handle>` -
69-
defines a workflow that starts with a :class:`Symfony\\Component\\HttpFoundation\\Request`
69+
defines a process flow that starts with a :class:`Symfony\\Component\\HttpFoundation\\Request`
7070
and ends with a :class:`Symfony\\Component\\HttpFoundation\\Response`.
7171

7272
.. raw:: html
@@ -75,7 +75,7 @@ and ends with a :class:`Symfony\\Component\\HttpFoundation\\Response`.
7575
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."
7676
></object>
7777

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

8181
HttpKernel: Driven by Events

0 commit comments

Comments
 (0)