8000 --- · githubfromgui/symfony-docs@02c4376 · GitHub
[go: up one dir, main page]

Skip to content

Commit 02c4376

Browse files
committed
---
yaml --- r: 73423 b: refs/heads/5.x c: 1b5de8d h: refs/heads/5.x i: 73421: fad7e68 73419: 34d58e3 73415: de9eccf 73407: 712379c
1 parent 3751a62 commit 02c4376

File tree

92 files changed

+37
-1732
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+37
-1732
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,4 +92,4 @@ refs/heads/3.3: 93587037fef6a2f40e0cbdea41754e1e76255fe6
9292
refs/heads/weaverryan-patch-1: a52aee3dceba3357dd59558677811a2ff86d1357
9393
refs/heads/4.0: e887a8b5e5d102235545837506f1d4e883f051a5
9494
refs/heads/4.1: 67f3845bc17a81379c609af1944099706e5b429e
95-
refs/heads/5.x: 1ee6ff15161abbbbb2b548f3b6ce86cbcce2b2c8
95+
refs/heads/5.x: 1b5de8d382a9d0cc7f4ee963341fe60cae2c7480

trunk/bundles/configuration.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -197,10 +197,6 @@ The ``Configuration`` class to handle the sample configuration looks like::
197197
}
198198
}
199199

200-
.. deprecated:: 4.2
201-
202-
Not passing the root node name to ``TreeBuilder`` was deprecated in Symfony 4.2.
203-
204200
.. seealso::
205201

206202
The ``Configuration`` class can be much more complicated than shown here,

trunk/cache.rst

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,6 @@ Basic uses of the cache looks like this::
3030
Symfony supports the Cache Contracts, PSR-6/16 and Doctrine Cache interfaces.
3131
You can read more about these at the :doc:`component documentation </components/cache>`.
3232

33-
.. versionadded:: 4.2
34-
35-
The cache contracts were introduced in Symfony 4.2.
36-
3733
.. _cache-configuration-with-frameworkbundle:
3834

3935
Configuring Cache with FrameworkBundle
@@ -629,10 +625,6 @@ To see all available cache pools:
629625
630626
$ php bin/console cache:pool:list
631627
632-
.. versionadded:: 4.3
633-
634-
The ``cache:pool:list`` command was introduced in Symfony 4.3.
635-
636628
Clear one pool:
637629

638630
.. code-block:: terminal

trunk/components/cache/adapters/memcached_adapter.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,6 @@ helper method allows creating and configuring a `Memcached`_ class instance usin
7070
'memcached:?host[localhost]&host[localhost:12345]&host[/some/memcached.sock:]=3'
7171
);
7272

73-
.. versionadded:: 4.2
74-
75-
The option to define multiple servers in a single DSN was introduced in Symfony 4.2.
76-
7773
The `Data Source Name (DSN)`_ for this adapter must use the following format:
7874

7975
.. code-block:: text

trunk/components/cache/adapters/redis_adapter.rst

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -102,14 +102,6 @@ name of your service group::
102102
'redis:?host[redis1:26379]&host[redis2:26379]&host[redis3:26379]&redis_sentinel=mymaster'
103103
);
104104

105-
.. versionadded:: 4.2
106-
107-
The option to define multiple servers in a single DSN was introduced in Symfony 4.2.
108-
109-
.. versionadded:: 4.4
110-
111-
Redis Sentinel support was introduced in Symfony 4.4.
112-
113105
.. note::
114106

115107
See the :class:`Symfony\\Component\\Cache\\Traits\\RedisTrait` for more options

trunk/components/cache/psr6_psr16_adapters.rst

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,6 @@ this use-case::
4646
// now use this wherever you want
4747
$githubApiClient = new GitHubApiClient($psr6Cache);
4848

49-
.. versionadded:: 4.3
50-
51-
The ``Psr16Adapter`` class was introduced in Symfony 4.3.
52-
5349
Using a PSR-6 Cache Object as a PSR-16 Cache
5450
--------------------------------------------
5551

@@ -87,8 +83,4 @@ this use-case::
8783
// now use this wherever you want
8884
$githubApiClient = new GitHubApiClient($psr16Cache);
8985

90-
.. versionadded:: 4.3
91-
92-
The ``Psr16Cache`` class was introduced in Symfony 4.3.
93-
9486
.. _`PSR-16`: http://www.php-fig.org/psr/psr-16/

trunk/components/config/definition.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,6 @@ implements the :class:`Symfony\\Component\\Config\\Definition\\ConfigurationInte
6868
}
6969
}
7070

71-
.. deprecated:: 4.2
72-
73-
Not passing the root node name to ``TreeBuilder`` was deprecated in Symfony 4.2.
74-
7571
Adding Node Definitions to the Tree
7672
-----------------------------------
7773

trunk/components/console/helpers/progressbar.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -118,10 +118,6 @@ If ``$iterable = [1, 2]``, the previous code will output the following:
118118
1/2 [==============>-------------] 50%
119119
2/2 [============================] 100%
120120
121-
.. versionadded:: 4.3
122-
123-
The ``iterate()`` method was introduced in Symfony 4.3.
124-
125121
Customizing the Progress Bar
126122
----------------------------
127123

trunk/components/console/helpers/questionhelper.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -212,10 +212,6 @@ provide a callback function to dynamically generate suggestions::
212212
$filePath = $helper->ask($input, $output, $question);
213213
}
214214

215-
.. versionadded:: 4.3
216-
217-
The ``setAutocompleterCallback()`` method was introduced in Symfony 4.3.
218-
219215
Hiding the User's Response
220216
~~~~~~~~~~~~~~~~~~~~~~~~~~
221217

trunk/components/dom_crawler.rst

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,6 @@ tree.
7777
The DomCrawler component will use it automatically when the content has
7878
an HTML5 doctype.
7979

80-
.. versionadded:: 4.3
81-
82-
The automatic support of the html5-php library was introduced in Symfony 4.3.
83-
8480
Node Filtering
8581
~~~~~~~~~~~~~~
8682

@@ -216,10 +212,6 @@ Access the value of the first node of the current selection::
216212
// avoid the exception passing an argument that text() returns when node does not exist
217213
$message = $crawler->filterXPath('//body/p')->text('Default text content');
218214

219-
.. versionadded:: 4.3
220-
221-
The default argument of ``text()`` was introduced in Symfony 4.3.
222-
223215
Access the attribute value of the first node of the current selection::
224216

225217
$class = $crawler->filterXPath('//body/p')->attr('class');
@@ -236,10 +228,6 @@ Extract attribute and/or node values from the list of nodes::
236228
Special attribute ``_text`` represents a node value, while ``_name``
237229
represents the element name (the HTML tag name).
238230

239-
.. versionadded:: 4.3
240-
241-
The special attribute ``_name`` was introduced in Symfony 4.3.
242-
243231
Call an anonymous function on each node of the list::
244232

245233
use Symfony\Component\DomCrawler\Crawler;
@@ -333,10 +321,6 @@ and :phpclass:`DOMNode` objects::
333321
// avoid the exception passing an argument that html() returns when node does not exist
334322
$html = $crawler->html('Default <strong>HTML</strong> content');
335323

336-
.. versionadded:: 4.3
337-
338-
The default argument of ``html()`` was introduced in Symfony 4.3.
339-
340324
Expression Evaluation
341325
~~~~~~~~~~~~~~~~~~~~~
342326

0 commit comments

Comments
 (0)
0