Skip to content

Avoid assuming things are simple #12227

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions introduction/http_fundamentals.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ to communicate with each other. For example, when checking for the latest
.. image:: /_images/http/xkcd-full.png
:align: center

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

Symfony is built from the ground up around that reality. Whether you realize
Expand Down Expand Up @@ -147,8 +146,7 @@ Requests, Responses and Web Development
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

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

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

A very simple front controller might look like this::
A small front controller might look like this::

// index.php
use Symfony\Component\HttpFoundation\Request;
Expand Down