File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
Filter options
Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
Original file line number Diff line number Diff line change @@ -242,8 +242,8 @@ have all the request information at your fingertips::
242
242
$request->headers->get('host');
243
243
$request->headers->get('content_type');
244
244
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
247
247
248
248
As a bonus, the ``Request `` class does a lot of work in the background that
249
249
you'll never need to worry about. For example, the ``isSecure() `` method
Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ Creating Symfony Applications without the Installer
108
108
109
109
If you still use PHP 5.3, or if you can't execute the installer for any reason,
110
110
you can create Symfony applications using the alternative installation method
111
- based con `Composer `_.
111
+ based on `Composer `_.
112
112
113
113
Composer is the dependency manager used by modern PHP applications and it can
114
114
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.
364
364
at this cookbook article: ":doc: `/cookbook/bundles/remove `"
365
365
366
366
.. _`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
368
368
.. _`Composer` : http://getcomposer.org/
369
369
.. _`Composer download page` : https://getcomposer.org/download/
370
370
.. _`Apache` : http://httpd.apache.org/docs/current/mod/core.html#documentroot
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ To install Composer on Linux or Mac OS X, execute the following two commands:
17
17
$ curl -sS https://getcomposer.org/installer | php
18
18
$ sudo mv composer.phar /usr/local/bin/composer
19
19
20
- - .. note::
20
+ .. note ::
21
21
22
22
If you don't have ``curl `` installed, you can also just download the
23
23
``installer `` file manually at http://getcomposer.org/installer and
Original file line number Diff line number Diff line change @@ -571,7 +571,7 @@ cache
571
571
**type **: ``string ``
572
572
573
573
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
575
575
value with ``validator.mapping.cache. `` (e.g. if the value is ``apc ``, the
576
576
``validator.mapping.cache.apc `` service will be injected). The service has
577
577
to implement the :class: `Symfony\\ Component\\ Validator\\ Mapping\\ Cache\\ CacheInterface `.
You can’t perform that action at this time.
0 commit comments