Skip to content

Commit d0f0072

Browse files
committed
Merge branch '3.1'
2 parents ae6d6dd + aae630a commit d0f0072

File tree

6 files changed

+0
-33
lines changed

6 files changed

+0
-33
lines changed

components/property_info.rst

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ The PropertyInfo Component
88
The PropertyInfo component extracts information about PHP class properties
99
using metadata from popular sources, like `Reflection`_ and `PHP Documentation`_.
1010

11-
.. versionadded:: 2.8
12-
The PropertyInfo component was introduced in Symfony 2.8.
13-
1411
Installation
1512
------------
1613

console/verbosity.rst

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
Verbosity Levels
22
================
33

4-
.. versionadded:: 2.3
5-
The ``VERBOSITY_VERY_VERBOSE`` and ``VERBOSITY_DEBUG`` constants were introduced
6-
in version 2.3
7-
84
The console has five verbosity levels. These are defined in the
95
:class:`Symfony\\Component\\Console\\Output\\OutputInterface`:
106

@@ -48,10 +44,6 @@ level. For example::
4844
}
4945
}
5046

51-
.. versionadded:: 2.8
52-
The ability to pass the verbosity level to the ``writeln()`` method was
53-
introduced in Symfony 2.8.
54-
5547
There are also more semantic methods you can use to test for each of the
5648
verbosity levels::
5749

controller/csrf_token_validation.rst

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,3 @@ method to check the validity of a CSRF token::
1515
// ... do something, like deleting an object
1616
}
1717
}
18-
19-
.. versionadded:: 2.6
20-
The ``isCsrfTokenValid()`` shortcut method was introduced in Symfony 2.6.
21-
It is equivalent to executing the following code:
22-
23-
.. code-block:: php
24-
25-
use Symfony\Component\Security\Csrf\CsrfToken;
26-
27-
$this->get('security.csrf.token_manager')
28-
->isTokenValid(new CsrfToken('token_id', 'TOKEN'));

routing/debug.rst

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ the command by running the following from the root of your project.
1313
1414
$ php bin/console debug:router
1515
16-
.. versionadded:: 2.6
17-
Prior to Symfony 2.6, this command was called ``router:debug``.
18-
1916
This command will print a helpful list of *all* the configured routes in
2017
your application:
2118

service_container/alias_private.rst

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,9 +133,6 @@ This means that when using the container directly, you can access the
133133
Deprecating Services
134134
--------------------
135135

136-
.. versionadded:: 2.8
137-
The ``deprecated`` setting was introduced in Symfony 2.8.
138-
139136
Once you have decided to deprecate the use of a service (because it is outdated
140137
or you decided not to maintain it anymore), you can deprecate its definition:
141138

service_container/service_decoration.rst

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -163,11 +163,6 @@ convention, the old ``app.mailer`` service is renamed to
163163
Decoration Priority
164164
-------------------
165165

166-
.. versionadded:: 2.8
167-
The ability to define the decoration priority was introduced in Symfony 2.8.
168-
Prior to Symfony 2.8, the priority depends on the order in
169-
which definitions are found.
170-
171166
If you want to apply more than one decorator to a service, you can control their
172167
order by configuring the priority of decoration, this can be any integer number
173168
(decorators with higher priorities will be applied first).

0 commit comments

Comments
 (0)