@@ -23,8 +23,7 @@ to communicate with each other. For example, when checking for the latest
23
23
.. image :: /_images/http/xkcd-full.png
24
24
:align: center
25
25
26
- And while the actual language used is a bit more formal, it's still dead-simple.
27
- HTTP is the term used to describe this simple text-based language. The goal of
26
+ HTTP is the term used to describe this text-based language. The goal of
28
27
your server is *always * to understand text requests and return text responses.
29
28
30
29
Symfony is built from the ground up around that reality. Whether you realize
@@ -147,8 +146,7 @@ Requests, Responses and Web Development
147
146
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
148
147
149
148
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.
152
150
153
151
The most important fact is this: regardless of the language you use, the
154
152
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,
328
326
and the routing of different URLs to different parts of your application
329
327
is done internally.
330
328
331
- A very simple front controller might look like this::
329
+ A small front controller might look like this::
332
330
333
331
// index.php
334
332
use Symfony\Component\HttpFoundation\Request;
0 commit comments