Skip to content

Commit 8ab4383

Browse files
committed
Merge branch '5.4' into 6.4
* 5.4: Update reproducer.rst: Minor rewording [DomCrawler] fixes typo `Form::getFields()` -> `Form::getFiles()` Fix redis adapter config to work with tags
2 parents 8a3b638 + 5a99476 commit 8ab4383

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

cache.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -602,8 +602,7 @@ to enable this feature. This could be added by using the following configuration
602602
cache:
603603
pools:
604604
my_cache_pool:
605-
adapter: cache.adapter.redis
606-
tags: true
605+
adapter: cache.adapter.redis_tag_aware
607606
608607
.. code-block:: xml
609608

contributing/code/reproducer.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ Creating a Bug Reproducer
22
=========================
33

44
The main Symfony code repository receives thousands of issues reports per year.
5-
Some of those issues are easy to understand and the Symfony Core developers can
6-
fix them without any other information. However, other issues are much harder to
5+
Some of those issues are easy to understand and can
6+
be fixed without any other information. However, other issues are much harder to
77
understand because developers can't reproduce them in their computers. That's
88
when we'll ask you to create a "bug reproducer", which is the minimum amount of
99
code needed to make the bug appear when executed.

testing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -881,7 +881,7 @@ The second optional argument is used to override the default form field values.
881881

882882
If you need access to the :class:`Symfony\\Component\\DomCrawler\\Form` object
883883
that provides helpful methods specific to forms (such as ``getUri()``,
884-
``getValues()`` and ``getFields()``) use the ``Crawler::selectButton()`` method instead::
884+
``getValues()`` and ``getFiles()``) use the ``Crawler::selectButton()`` method instead::
885885

886886
$client = static::createClient();
887887
$crawler = $client->request('GET', '/post/hello-world');

0 commit comments

Comments
 (0)