Skip to content

Commit 3546769

Browse files
committed
removed more obsolete versionadded directives
1 parent 3c767f6 commit 3546769

File tree

4 files changed

+0
-29
lines changed

4 files changed

+0
-29
lines changed

bundles/extension.rst

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -139,10 +139,6 @@ Symfony creates a big ``classes.php`` file in the cache directory to aggregate
139139
the contents of the PHP classes that are used in every request. This reduces the
140140
I/O operations and increases the application performance.
141141

142-
.. versionadded:: 3.2
143-
144-
The ``addAnnotatedClassesToCompile()`` method was added in Symfony 3.2.
145-
146142
Your bundles can also add their own classes into this file thanks to the
147143
``addClassesToCompile()`` and ``addAnnotatedClassesToCompile()`` methods (both
148144
work in the same way, but the second one is for classes that contain PHP
@@ -176,10 +172,6 @@ class names::
176172
If some class extends from other classes, all its parents are automatically
177173
included in the list of classes to compile.
178174

179-
.. versionadded:: 3.2
180-
181-
The option to add classes to compile using patterns was introduced in Symfony 3.2.
182-
183175
The classes to compile can also be added using file path patterns::
184176

185177
// ...

configuration/external_parameters.rst

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@ example. The flexibility of the Symfony service container allows you to do this.
1212
Environment Variables
1313
---------------------
1414

15-
.. versionadded:: 3.2
16-
17-
``env()`` parameters were introduced in Symfony 3.2.
18-
1915
You can reference environment variables by using special parameters named after
2016
the variables you want to use enclosed between ``env()``. Their actual values
2117
will be resolved at runtime (once per request), so that dumped containers can be
@@ -122,13 +118,6 @@ of the following:
122118
123119
.. tip::
124120

125-
.. versionadded:: 3.3
126-
127-
The support of the special ``SYMFONY__`` environment variables was
128-
deprecated in Symfony 3.3 and it will be removed in 4.0. Instead of
129-
using those variables, define regular environment variables and get
130-
their values using the ``%env(...)%`` syntax in your config files.
131-
132121
You can also define the default value of any existing parameters using
133122
special environment variables named after their corresponding parameter
134123
prefixed with ``SYMFONY__`` after replacing dots by double underscores

form/unit_testing.rst

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -218,8 +218,3 @@ guessers using the :method:`Symfony\\Component\\Form\\Test\\FormIntegrationTestC
218218
:method:`Symfony\\Component\\Form\\Test\\FormIntegrationTestCase::getTypeExtensions`
219219
and :method:`Symfony\\Component\\Form\\Test\\FormIntegrationTestCase::getTypeGuessers`
220220
methods.
221-
222-
.. versionadded:: 3.3
223-
224-
The ``getTypes()``, ``getTypeExtensions()`` and ``getTypeGuessers()``
225-
methods were introduced in Symfony 3.3.

reference/forms/types/number.rst

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,6 @@ Field Options
4444
scale
4545
~~~~~
4646

47-
.. versionadded:: 2.7
48-
49-
The ``scale`` option was introduced in Symfony 2.7. Prior to Symfony 2.7,
50-
it was known as ``precision``.
51-
5247
**type**: ``integer`` **default**: Locale-specific (usually around ``3``)
5348

5449
This specifies how many decimals will be allowed until the field rounds

0 commit comments

Comments
 (0)