@@ -855,7 +855,7 @@ timeout
855855
856856**type **: ``float `` **default **: depends on your PHP config
857857
858- Time, in seconds, to wait for a response. If the response stales for longer, a
858+ Time, in seconds, to wait for a response. If the response takes longer, a
859859:class: `Symfony\\ Component\\ HttpClient\\ Exception\\ TransportException ` is thrown.
860860Its default value is the same as the value of PHP's `default_socket_timeout `_
861861config option.
@@ -1070,7 +1070,7 @@ when using ``.``, instead of matching only a single byte.
10701070
10711071If the charset of your application is UTF-8 (as defined in the
10721072:ref: `getCharset() method <configuration-kernel-charset >` of your kernel) it's
1073- recommended to set it to ``true ``. This will make non-UTF8 URLs to generate 404
1073+ recommended setting it to ``true ``. This will make non-UTF8 URLs to generate 404
10741074errors.
10751075
10761076.. _config-framework-session :
@@ -1191,8 +1191,8 @@ cookie_samesite
11911191
11921192**type **: ``string `` or ``null `` **default **: ``null ``
11931193
1194- It controls the way cookies are sent when the HTTP request was not originated
1195- from the same domain the cookies are associated to . Setting this option is
1194+ It controls the way cookies are sent when the HTTP request did not originate
1195+ from the same domain that is associated with the cookies . Setting this option is
11961196recommended to mitigate `CSRF security attacks `_.
11971197
11981198By default, browsers send all cookies related to the domain of the HTTP request.
@@ -1210,7 +1210,7 @@ The possible values for this option are:
12101210 (previously this was the default behavior of null, but in newer browsers ``'lax' ``
12111211 would be applied when the header has not been set)
12121212* ``'strict' `` (or the ``Cookie::SAMESITE_STRICT `` constant), use it to never
1213- send any cookie when the HTTP request is not originated from the same domain.
1213+ send any cookie when the HTTP request did not originate from the same domain.
12141214* ``'lax' `` (or the ``Cookie::SAMESITE_LAX `` constant), use it to allow sending
12151215 cookies when the request originated from a different domain, but only when the
12161216 user consciously made the request (by clicking a link or submitting a form
@@ -1282,7 +1282,7 @@ sid_bits_per_character
12821282
12831283**type **: ``integer `` **default **: ``4 ``
12841284
1285- This determines the number of bits in encoded session ID character. The possible
1285+ This determines the number of bits in the encoded session ID character. The possible
12861286values are ``4 `` (0-9, a-f), ``5 `` (0-9, a-v), and ``6 `` (0-9, a-z, A-Z, "-", ",").
12871287The more bits results in stronger session ID. ``5 `` is recommended value for
12881288most environments.
@@ -2134,7 +2134,7 @@ The service that is used to persist class metadata in a cache. The service
21342134has to implement the :class: `Symfony\\ Component\\ Validator\\ Mapping\\ Cache\\ CacheInterface `.
21352135
21362136Set this option to ``validator.mapping.cache.doctrine.apc `` to use the APC
2137- cache provide from the Doctrine project.
2137+ cache provided by the Doctrine project.
21382138
21392139.. _reference-validation-enable_annotations :
21402140
@@ -2191,7 +2191,7 @@ By default, the :doc:`NotCompromisedPassword </reference/constraints/NotCompromi
21912191constraint uses the public API provided by `haveibeenpwned.com `_. This option
21922192allows to define a different, but compatible, API endpoint to make the password
21932193checks. It's useful for example when the Symfony application is run in an
2194- intranet without public access to Internet .
2194+ intranet without public access to the internet .
21952195
21962196static_method
21972197.............
@@ -2547,7 +2547,7 @@ A list of cache pools to be created by the framework extension.
25472547
25482548.. seealso ::
25492549
2550- For more information about how pools works , see :ref: `cache pools <component-cache-cache-pools >`.
2550+ For more information about how pools work , see :ref: `cache pools <component-cache-cache-pools >`.
25512551
25522552To configure a Redis cache pool with a default lifetime of 1 hour, do the following:
25532553
@@ -2656,8 +2656,8 @@ provider
26562656
26572657Overwrite the default service name or DSN respectively, if you do not want to
26582658use what is configured as ``default_X_provider `` under ``cache ``. See the
2659- description of the default provider setting above for the type of adapter
2660- you use for information on how to specify the provider.
2659+ description of the default provider setting above for information on how to
2660+ specify your specific provider.
26612661
26622662clearer
26632663"""""""
0 commit comments