Skip to content

Commit 27296ad

Browse files
committed
Merge branch '2.7'
2 parents 56db7af + 3470c87 commit 27296ad

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Diff for: book/http_fundamentals.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -242,8 +242,8 @@ have all the request information at your fingertips::
242242
$request->headers->get('host');
243243
$request->headers->get('content_type');
244244

245-
$request->getMethod(); // GET, POST, PUT, DELETE, HEAD
246-
$request->getLanguages(); // an array of languages the client accepts
245+
$request->getMethod(); // GET, POST, PUT, DELETE, HEAD
246+
$request->getLanguages(); // an array of languages the client accepts
247247

248248
As a bonus, the ``Request`` class does a lot of work in the background that
249249
you'll never need to worry about. For example, the ``isSecure()`` method

Diff for: book/installation.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Creating Symfony Applications without the Installer
108108

109109
If you still use PHP 5.3, or if you can't execute the installer for any reason,
110110
you can create Symfony applications using the alternative installation method
111-
based con `Composer`_.
111+
based on `Composer`_.
112112

113113
Composer is the dependency manager used by modern PHP applications and it can
114114
also be used to create new applications based on the Symfony framework. If you
@@ -364,7 +364,7 @@ a wide variety of articles about solving specific problems with Symfony.
364364
at this cookbook article: ":doc:`/cookbook/bundles/remove`"
365365

366366
.. _`Symfony Release process`: http://symfony.com/doc/current/contributing/community/releases.html
367-
.. _`explained in this post`: http://fabien.potencier.org.nyud.net/article/73/signing-project-releases
367+
.. _`explained in this post`: http://fabien.potencier.org/article/73/signing-project-releases
368368
.. _`Composer`: http://getcomposer.org/
369369
.. _`Composer download page`: https://getcomposer.org/download/
370370
.. _`Apache`: http://httpd.apache.org/docs/current/mod/core.html#documentroot

Diff for: cookbook/composer.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ To install Composer on Linux or Mac OS X, execute the following two commands:
1717
$ curl -sS https://getcomposer.org/installer | php
1818
$ sudo mv composer.phar /usr/local/bin/composer
1919
20-
-.. note::
20+
.. note::
2121

2222
If you don't have ``curl`` installed, you can also just download the
2323
``installer`` file manually at http://getcomposer.org/installer and

Diff for: reference/configuration/framework.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ cache
571571
**type**: ``string``
572572

573573
This value is used to determine the service that is used to persist class
574-
metadata in a cache. The actual service name is built by prefix the configured
574+
metadata in a cache. The actual service name is built by prefixing the configured
575575
value with ``validator.mapping.cache.`` (e.g. if the value is ``apc``, the
576576
``validator.mapping.cache.apc`` service will be injected). The service has
577577
to implement the :class:`Symfony\\Component\\Validator\\Mapping\\Cache\\CacheInterface`.

0 commit comments

Comments
 (0)