Skip to content

Commit 71a183b

Browse files
Remove all 6.x versionadded on 7.0
1 parent 4ce3528 commit 71a183b

File tree

115 files changed

+20
-1207
lines changed

Some content is hidden

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

115 files changed

+20
-1207
lines changed

bundles.rst

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,6 @@ Start by creating a new class called ``AcmeTestBundle``::
5656
{
5757
}
5858

59-
.. versionadded:: 6.1
60-
61-
The :class:`Symfony\\Component\\HttpKernel\\Bundle\\AbstractBundle` was
62-
introduced in Symfony 6.1.
6359

6460
.. caution::
6561

@@ -94,7 +90,7 @@ to be adjusted if needed:
9490

9591
``src/``
9692
Contains all PHP classes related to the bundle logic (e.g. ``Controller/RandomController.php``).
97-
93+
9894
``config/``
9995
Houses configuration, including routing configuration (e.g. ``routing.yaml``).
10096

bundles/configuration.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -320,10 +320,6 @@ In your extension, you can load this and dynamically set its arguments::
320320
Using the AbstractBundle Class
321321
------------------------------
322322

323-
.. versionadded:: 6.1
324-
325-
The ``AbstractBundle`` class was introduced in Symfony 6.1.
326-
327323
As an alternative, instead of creating an extension and configuration class as
328324
shown in the previous section, you can also extend
329325
:class:`Symfony\\Component\\HttpKernel\\Bundle\\AbstractBundle` to add this

bundles/extension.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,6 @@ To read more about it, see the ":doc:`/bundles/configuration`" article.
111111
Loading Services directly in your Bundle class
112112
----------------------------------------------
113113

114-
.. versionadded:: 6.1
115-
116-
The ``AbstractBundle`` class was introduced in Symfony 6.1.
117-
118114
Alternatively, you can define and load services configuration directly in a
119115
bundle class instead of creating a specific ``Extension`` class. You can do
120116
this by extending from :class:`Symfony\\Component\\HttpKernel\\Bundle\\AbstractBundle`

bundles/prepend_extension.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -154,10 +154,6 @@ registered and the ``entity_manager_name`` setting for ``acme_hello`` is set to
154154
Prepending Extension in the Bundle Class
155155
----------------------------------------
156156

157-
.. versionadded:: 6.1
158-
159-
The ``AbstractBundle`` class was introduced in Symfony 6.1.
160-
161157
You can also append or prepend extension configuration directly in your
162158
Bundle class if you extend from the :class:`Symfony\\Component\\HttpKernel\\Bundle\\AbstractBundle`
163159
class and define the :method:`Symfony\\Component\\HttpKernel\\Bundle\\AbstractBundle::prependExtension`

cache.rst

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -728,10 +728,6 @@ Clear all cache pools:
728728
729729
$ php bin/console cache:pool:clear --all
730730
731-
.. versionadded:: 6.3
732-
733-
The ``--all`` option was introduced in Symfony 6.3.
734-
735731
Clear all caches everywhere:
736732

737733
.. code-block:: terminal
@@ -740,10 +736,6 @@ Clear all caches everywhere:
740736
741737
Clear cache by tag(s):
742738

743-
.. versionadded:: 6.1
744-
745-
The ``cache:pool:invalidate-tags`` command was introduced in Symfony 6.1.
746-
747739
.. code-block:: terminal
748740
749741
# invalidate tag1 from all taggable pools

components/browser_kit.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -381,10 +381,6 @@ to call ``json_decode()`` explicitly::
381381
$response = $browser->getResponse()->toArray();
382382
// $response is a PHP array of the decoded JSON contents
383383

384-
.. versionadded:: 6.1
385-
386-
The ``toArray()`` method was introduced in Symfony 6.1.
387-
388384
Learn more
389385
----------
390386

components/cache/adapters/redis_adapter.rst

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,6 @@ as the second and third parameters::
4343
$defaultLifetime = 0
4444
);
4545

46-
.. versionadded:: 6.3
47-
48-
Support for `Relay`_ was introduced in Symfony 6.3.
49-
5046
Configure the Connection
5147
------------------------
5248

@@ -165,10 +161,6 @@ array of ``key => value`` pairs representing option names and their respective v
165161
Available Options
166162
~~~~~~~~~~~~~~~~~
167163

168-
.. versionadded:: 6.3
169-
170-
``\Relay\Relay`` support was introduced in Symfony 6.3.
171-
172164
``class`` (type: ``string``, default: ``null``)
173165
Specifies the connection library to return, either ``\Redis``, ``\Relay\Relay`` or ``\Predis\Client``.
174166
If none is specified, fallback value is in following order, depending which one is available first:

components/clock.rst

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
The Clock Component
22
===================
33

4-
.. versionadded:: 6.2
5-
6-
The Clock component was introduced in Symfony 6.2
7-
84
The Clock component decouples applications from the system clock. This allows
95
you to fix time to improve testability of time-sensitive logic.
106

@@ -65,11 +61,6 @@ The Clock component also provides the ``now()`` function::
6561

6662
Later on this page you can learn how to use this clock in your services and tests.
6763

68-
.. versionadded:: 6.3
69-
70-
The :class:`Symfony\\Component\\Clock\\Clock` class and ``now()`` function
71-
were introduced in Symfony 6.3.
72-
7364
Available Clocks Implementations
7465
--------------------------------
7566

@@ -189,10 +180,6 @@ you can set the current time arbitrarily without having to change your service c
189180
This will help you test every case of your method without the need of actually
190181
being in a month or another.
191182

192-
.. versionadded:: 6.3
193-
194-
The :class:`Symfony\\Component\\Clock\\ClockAwareTrait` was introduced in Symfony 6.3.
195-
196183
Writing Time-Sensitive Tests
197184
----------------------------
198185

@@ -247,8 +234,4 @@ By combining the :class:`Symfony\\Component\\Clock\\ClockAwareTrait` and
247234
:class:`Symfony\\Component\\Clock\\Test\\ClockSensitiveTrait`, you have full
248235
control on your time-sensitive code's behavior.
249236

250-
.. versionadded:: 6.3
251-
252-
The :class:`Symfony\\Component\\Clock\\Test\\ClockSensitiveTrait` was introduced in Symfony 6.3.
253-
254237
.. _`PSR-20`: https://www.php-fig.org/psr/psr-20/

components/config/definition.rst

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -171,11 +171,6 @@ The configuration can now be written like this::
171171
->end()
172172
;
173173

174-
.. versionadded:: 6.3
175-
176-
The support of enum values in ``enumNode()`` was introduced
177-
in Symfony 6.3.
178-
179174
Array Nodes
180175
~~~~~~~~~~~
181176

components/console/events.rst

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -195,11 +195,6 @@ method::
195195
$event->abortExit();
196196
});
197197

198-
.. versionadded:: 6.3
199-
200-
The ``setExitCode()``, ``getExitCode()`` and ``abortExit()`` methods were introduced
201-
in Symfony 6.3.
202-
203198
.. tip::
204199

205200
All the available signals (``SIGINT``, ``SIGQUIT``, etc.) are defined as
@@ -250,11 +245,6 @@ handle all signals e.g. to do some tasks before terminating the command.
250245
:method:`Symfony\\Component\\Console\\SignalRegistry\\SignalMap::getSignalName`
251246
method.
252247

253-
.. versionadded:: 6.4
254-
255-
The :class:`Symfony\\Component\\Console\\SignalRegistry\\SignalMap` class was
256-
introduced in Symfony 6.4.
257-
258248
.. deprecated:: 6.3
259249

260250
In Symfony versions previous to 6.3, all signals (except ``SIGUSR1`` and

0 commit comments

Comments
 (0)