Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit de2802d

Browse filesBrowse files
committed
remove Symfony 2/3 versionadded directives
1 parent 1e104b5 commit de2802d
Copy full SHA for de2802d

File tree

Expand file treeCollapse file tree

10 files changed

+0
-43
lines changed
Filter options
Expand file treeCollapse file tree

10 files changed

+0
-43
lines changed

‎components/process.rst

Copy file name to clipboardExpand all lines: components/process.rst
-5Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -112,11 +112,6 @@ with a non-zero code)::
112112

113113
.. tip::
114114

115-
.. versionadded:: 3.3
116-
117-
The ability to define commands as arrays of arguments was introduced in
118-
Symfony 3.3.
119-
120115
Using array of arguments is the recommended way to define commands. This
121116
saves you from any escaping and allows sending signals seamlessly
122117
(e.g. to stop processes before completion.)::

‎components/serializer.rst

Copy file name to clipboardExpand all lines: components/serializer.rst
-5Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -166,11 +166,6 @@ needs three parameters:
166166
#. The name of the class this information will be decoded to
167167
#. The encoder used to convert that information into an array
168168

169-
.. versionadded:: 3.3
170-
171-
Support for the ``allow_extra_attributes`` key in the context was introduced
172-
in Symfony 3.3.
173-
174169
By default, additional attributes that are not mapped to the denormalized object
175170
will be ignored by the Serializer component. If you prefer to throw an exception
176171
when this happens, set the ``allow_extra_attributes`` context option to

‎components/validator.rst

Copy file name to clipboardExpand all lines: components/validator.rst
-4Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,6 @@ If you have lots of validation errors, you can filter them by error code::
6464
// handle this specific error (display some message, send an email, etc.)
6565
}
6666

67-
.. versionadded:: 3.3
68-
69-
The ``findByCodes()`` method was introduced in Symfony 3.3.
70-
7167
Retrieving a Validator Instance
7268
-------------------------------
7369

‎configuration/external_parameters.rst

Copy file name to clipboardExpand all lines: configuration/external_parameters.rst
-4Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,10 +137,6 @@ the following:
137137
Environment Variable Processors
138138
-------------------------------
139139

140-
.. versionadded:: 3.4
141-
142-
Environment variable processors were introduced in Symfony 3.4.
143-
144140
The values of environment variables are considered strings by default.
145141
However, your code may expect other data types, like integers or booleans.
146142
Symfony solves this problem with *processors*, which modify the contents of the

‎console/request_context.rst

Copy file name to clipboardExpand all lines: console/request_context.rst
-4Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,6 @@ will override the defaults.
6565
$container->setParameter('asset.request_context.base_path', $container->getParameter('router.request_context.base_url'));
6666
$container->setParameter('asset.request_context.secure', true);
6767
68-
.. versionadded:: 3.4
69-
70-
The ``asset.request_context.*`` parameters were introduced in Symfony 3.4.
71-
7268
Configuring the Request Context per Command
7369
-------------------------------------------
7470

‎reference/configuration/framework.rst

Copy file name to clipboardExpand all lines: reference/configuration/framework.rst
-4Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1591,10 +1591,6 @@ for translation files.
15911591
default_path
15921592
............
15931593

1594-
.. versionadded:: 3.4
1595-
1596-
The ``default_path`` option was introduced in Symfony 3.4.
1597-
15981594
**type**: ``string`` **default**: ``%kernel.project_dir%/translations``
15991595

16001596
This option allows to define the path where the application translations files

‎reference/forms/types/number.rst

Copy file name to clipboardExpand all lines: reference/forms/types/number.rst
-5Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,6 @@ Field Options
4545
scale
4646
~~~~~
4747

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

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

‎service_container/alias_private.rst

Copy file name to clipboardExpand all lines: service_container/alias_private.rst
-4Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -153,10 +153,6 @@ Anonymous Services
153153

154154
Anonymous services are only supported by the XML and YAML configuration formats.
155155

156-
.. versionadded:: 3.3
157-
158-
The feature to configure anonymous services in YAML was introduced in Symfony 3.3.
159-
160156
In some cases, you may want to prevent a service being used as a dependency of
161157
other services. This can be achieved by creating an anonymous service. These
162158
services are like regular services but they don't define an ID and they are

‎service_container/service_subscribers_locators.rst

Copy file name to clipboardExpand all lines: service_container/service_subscribers_locators.rst
-4Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@
44
Service Subscribers & Locators
55
==============================
66

7-
.. versionadded:: 3.3
8-
9-
Service subscribers and locators were introduced in Symfony 3.3.
10-
117
Sometimes, a service needs access to several other services without being sure
128
that all of them will actually be used. In those cases, you may want the
139
instantiation of the services to be lazy. However, that's not possible using

‎testing.rst

Copy file name to clipboardExpand all lines: testing.rst
-4Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -603,10 +603,6 @@ will no longer be followed::
603603
Reporting Exceptions
604604
~~~~~~~~~~~~~~~~~~~~
605605

606-
.. versionadded:: 3.4
607-
608-
The ``catchExceptions()`` method was introduced in Symfony 3.4.
609-
610606
Debugging exceptions in functional tests may be difficult because by default
611607
they are caught and you need to look at the logs to see which exception was
612608
thrown. Disabling catching of exceptions in the test client allows the exception

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.