Skip to content

Commit a849123

Browse files
committed
Merge branch '2.3' into 2.4
Conflicts: book/templating.rst components/class_loader/cache_class_loader.rst components/class_loader/class_loader.rst components/class_loader/debug_class_loader.rst components/event_dispatcher/immutable_dispatcher.rst components/process.rst reference/constraints/Regex.rst reference/constraints/UniqueEntity.rst reference/twig_reference.rst
2 parents b0e07b4 + e7580c0 commit a849123

30 files changed

+46
-47
lines changed

book/forms.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ other things, determines which HTML form tag(s) is rendered for that field.
130130
Finally, you added a submit button for submitting the form to the server.
131131

132132
.. versionadded:: 2.3
133-
Support for submit buttons was added in Symfony 2.3. Before that, you had
133+
Support for submit buttons was introduced in Symfony 2.3. Before that, you had
134134
to add buttons to the form's HTML manually.
135135

136136
Symfony2 comes with many built-in types that will be discussed shortly
@@ -278,7 +278,7 @@ Submitting Forms with Multiple Buttons
278278
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
279279

280280
.. versionadded:: 2.3
281-
Support for buttons in forms was added in Symfony 2.3.
281+
Support for buttons in forms was introduced in Symfony 2.3.
282282

283283
When your form contains more than one submit button, you will want to check
284284
which of the buttons was clicked to adapt the program flow in your controller.
@@ -478,7 +478,7 @@ Disabling Validation
478478
~~~~~~~~~~~~~~~~~~~~
479479

480480
.. versionadded:: 2.3
481-
The ability to set ``validation_groups`` to false was added in Symfony 2.3.
481+
The ability to set ``validation_groups`` to false was introduced in Symfony 2.3.
482482

483483
Sometimes it is useful to suppress the validation of a form altogether. For
484484
these cases you can set the ``validation_groups`` option to ``false``::
@@ -548,7 +548,7 @@ Groups based on the Clicked Button
548548
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
549549

550550
.. versionadded:: 2.3
551-
Support for buttons in forms was added in Symfony 2.3.
551+
Support for buttons in forms was introduced in Symfony 2.3.
552552

553553
When your form contains multiple submit buttons, you can change the validation
554554
group depending on which button is used to submit the form. For example,

book/routing.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -721,7 +721,7 @@ Adding a Host Requirement
721721
~~~~~~~~~~~~~~~~~~~~~~~~~
722722

723723
.. versionadded:: 2.2
724-
Host matching support was added in Symfony 2.2
724+
Host matching support was introduced in Symfony 2.2
725725

726726
You can also match on the HTTP *host* of the incoming request. For more
727727
information, see :doc:`/components/routing/hostname_pattern` in the Routing
@@ -1165,7 +1165,7 @@ Adding a Host requirement to Imported Routes
11651165
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
11661166

11671167
.. versionadded:: 2.2
1168-
Host matching support was added in Symfony 2.2
1168+
Host matching support was introduced in Symfony 2.2
11691169

11701170
You can set the host regex on imported routes. For more information, see
11711171
:ref:`component-routing-host-imported`.

book/templating.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ Template Naming and Locations
376376
-----------------------------
377377

378378
.. versionadded:: 2.2
379-
Namespaced path support was added in 2.2, allowing for template names
379+
Namespaced path support was introduced in 2.2, allowing for template names
380380
like ``@AcmeDemo/layout.html.twig``. See :doc:`/cookbook/templating/namespaced_paths`
381381
for more details.
382382

@@ -783,7 +783,7 @@ in your application configuration:
783783
));
784784
785785
.. versionadded:: 2.2
786-
Default templates per render function was added in Symfony 2.2
786+
Default templates per render function was introduced in Symfony 2.2
787787

788788
You can define default templates per ``render`` function (which will override
789789
any global default template that is defined):

components/console/helpers/dialoghelper.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Autocompletion
6060
~~~~~~~~~~~~~~
6161

6262
.. versionadded:: 2.2
63-
Autocompletion for questions was added in Symfony 2.2.
63+
Autocompletion for questions was introduced in Symfony 2.2.
6464

6565
You can also specify an array of potential answers for a given question. These
6666
will be autocompleted as the user types::
@@ -78,7 +78,7 @@ Hiding the User's Response
7878
~~~~~~~~~~~~~~~~~~~~~~~~~~
7979

8080
.. versionadded:: 2.2
81-
The ``askHiddenResponse`` method was added in Symfony 2.2.
81+
The ``askHiddenResponse`` method was introduced in Symfony 2.2.
8282

8383
You can also ask a question and hide the response. This is particularly
8484
convenient for passwords::
@@ -148,7 +148,7 @@ Validating a Hidden Response
148148
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
149149

150150
.. versionadded:: 2.2
151-
The ``askHiddenResponseAndValidate`` method was added in Symfony 2.2.
151+
The ``askHiddenResponseAndValidate`` method was introduced in Symfony 2.2.
152152

153153
You can also ask and validate a hidden response::
154154

@@ -176,7 +176,7 @@ Let the user choose from a list of Answers
176176

177177
.. versionadded:: 2.2
178178
The :method:`Symfony\\Component\\Console\\Helper\\DialogHelper::select` method
179-
was added in Symfony 2.2.
179+
was introduced in Symfony 2.2.
180180

181181
If you have a predefined set of answers the user can choose from, you
182182
could use the ``ask`` method described above or, to make sure the user
@@ -211,7 +211,7 @@ argument). The default value for the attempts is ``false``, which means infinite
211211
attempts. You can define your own error message in the sixth argument.
212212

213213
.. versionadded:: 2.3
214-
Multiselect support was added in Symfony 2.3.
214+
Multiselect support was introduced in Symfony 2.3.
215215

216216
Multiple Choices
217217
................

components/console/helpers/progresshelper.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ Progress Helper
55
===============
66

77
.. versionadded:: 2.2
8-
The ``progress`` helper was added in Symfony 2.2.
8+
The ``progress`` helper was introduced in Symfony 2.2.
99

1010
.. versionadded:: 2.3
11-
The ``setCurrent`` method was added in Symfony 2.3.
11+
The ``setCurrent`` method was introduced in Symfony 2.3.
1212

1313
.. versionadded:: 2.4
1414
The ``clear`` method was added in Symfony 2.4.

components/console/helpers/tablehelper.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Table Helper
55
============
66

77
.. versionadded:: 2.3
8-
The ``table`` helper was added in Symfony 2.3.
8+
The ``table`` helper was introduced in Symfony 2.3.
99

1010
When building a console application it may be useful to display tabular data:
1111

components/finder.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Search in several locations by chaining calls to
8383
$finder->files()->in(__DIR__)->in('/elsewhere');
8484

8585
.. versionadded:: 2.2
86-
Wildcard support was added in version 2.2.
86+
Wildcard support was introduced in version 2.2.
8787

8888
Use wildcard characters to search in the directories matching a pattern::
8989

@@ -98,7 +98,7 @@ Exclude directories from matching with the
9898

9999
.. versionadded:: 2.3
100100
The :method:`Symfony\\Component\\Finder\\Finder::ignoreUnreadableDirs`
101-
method was added in Symfony 2.3.
101+
method was introduced in Symfony 2.3.
102102

103103
It's also possible to ignore directories that you don't have permission to read::
104104

components/form/introduction.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Request Handling
6767
~~~~~~~~~~~~~~~~
6868

6969
.. versionadded:: 2.3
70-
The ``handleRequest()`` method was added in Symfony 2.3.
70+
The ``handleRequest()`` method was introduced in Symfony 2.3.
7171

7272
To process form data, you'll need to call the :method:`Symfony\\Component\\Form\\Form::handleRequest`
7373
method::

components/http_foundation/introduction.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,7 @@ abstracts the hard work behind a simple API::
495495

496496
.. versionadded:: 2.2
497497
The :class:`Symfony\\Component\\HttpFoundation\\BinaryFileResponse`
498-
class was added in Symfony 2.2.
498+
class was introduced in Symfony 2.2.
499499

500500
Alternatively, if you are serving a static file, you can use a
501501
:class:`Symfony\\Component\\HttpFoundation\\BinaryFileResponse`::

components/intl.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ The Intl Component
99
access to the localization data of the `ICU library`_.
1010

1111
.. versionadded:: 2.3
12-
13-
The Intl component was added in Symfony 2.3. In earlier versions of Symfony,
12+
The Intl component was introduced in Symfony 2.3. In earlier versions of Symfony,
1413
you should use the Locale component instead.
1514

1615
.. caution::

0 commit comments

Comments
 (0)