Skip to content

Commit f39c079

Browse files
committed
Merge branch '4.3' into 4.4
* 4.3: Avoid assuming things are simple
2 parents 581a296 + b261982 commit f39c079

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

introduction/http_fundamentals.rst

+2-4
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ to communicate with each other. For example, when checking for the latest
2323
.. image:: /_images/http/xkcd-full.png
2424
:align: center
2525

26-
And while the actual language used is a bit more formal, it's still dead-simple.
2726
HTTP is the term used to describe this text-based language. The goal of
2827
your server is *always* to understand text requests and return text responses.
2928

@@ -147,8 +146,7 @@ Requests, Responses and Web Development
147146
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
148147

149148
This request-response conversation is the fundamental process that drives all
150-
communication on the web. And as important and powerful as this process is,
151-
it's inescapably simple.
149+
communication on the web.
152150

153151
The most important fact is this: regardless of the language you use, the
154152
type of application you build (web, mobile, JSON API) or the development
@@ -328,7 +326,7 @@ executing different PHP files, the front controller is *always* executed,
328326
and the routing of different URLs to different parts of your application
329327
is done internally.
330328

331-
A very simple front controller might look like this::
329+
A small front controller might look like this::
332330

333331
// index.php
334332
use Symfony\Component\HttpFoundation\Request;

0 commit comments

Comments
 (0)