You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
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`
70
70
and ends with a :class:`Symfony\\Component\\HttpFoundation\\Response`.
71
71
72
72
.. raw:: html
@@ -75,7 +75,7 @@ and ends with a :class:`Symfony\\Component\\HttpFoundation\\Response`.
75
75
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."
76
76
></object>
77
77
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
79
79
(and the Symfony Framework or any other library that uses the kernel) works.
0 commit comments