Skip to content

Commit bed495c

Browse files
committed
Merge branch '7.2' into 7.3
* 7.2: [Cache] Fix "Marshalling (Serializing) Data" code rendering issue Update http client timeout option docs
2 parents 4955cc7 + 149a8fa commit bed495c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

components/cache.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -209,11 +209,11 @@ the cache items before storing them.
209209

210210
The :class:`Symfony\\Component\\Cache\\Marshaller\\DefaultMarshaller` uses PHP's
211211
``serialize()`` function by default, but you can optionally use the ``igbinary_serialize()``
212-
function from the `Igbinary extension`_:
212+
function from the `Igbinary extension`_::
213213

214214
use Symfony\Component\Cache\Adapter\RedisAdapter;
215-
use Symfony\Component\Cache\DefaultMarshaller;
216-
use Symfony\Component\Cache\DeflateMarshaller;
215+
use Symfony\Component\Cache\Marshaller\DefaultMarshaller;
216+
use Symfony\Component\Cache\Marshaller\DeflateMarshaller;
217217

218218
$marshaller = new DeflateMarshaller(new DefaultMarshaller());
219219
// you can optionally use the Igbinary extension if you have it installed

reference/configuration/framework.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1261,7 +1261,7 @@ timeout
12611261

12621262
**type**: ``float`` **default**: depends on your PHP config
12631263

1264-
Time, in seconds, to wait for a response. If the response takes longer, a
1264+
Time, in seconds, to wait for network activity. If the connection is idle for longer, a
12651265
:class:`Symfony\\Component\\HttpClient\\Exception\\TransportException` is thrown.
12661266
Its default value is the same as the value of PHP's `default_socket_timeout`_
12671267
config option.

0 commit comments

Comments
 (0)