Skip to content

Commit 5db49ff

Browse files
committed
minor #11413 reword versionadded sentences a bit (OskarStark)
This PR was merged into the 3.4 branch. Discussion ---------- reword versionadded sentences a bit Lets promote this way instead of "was added" I will create a rule to spot this automatically in the future Commits ------- 65b24d6 reword versionadded sentences a bit
2 parents 439ecac + 65b24d6 commit 5db49ff

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
lines changed

best_practices/configuration.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ through environment variables:
211211
.. versionadded:: 3.2
212212

213213
Support for runtime environment variables via the ``%env(...)%`` syntax
214-
was added in Symfony 3.2. Prior to version 3.2, you needed to use the
214+
was introduced in Symfony 3.2. Prior to version 3.2, you needed to use the
215215
:doc:`special SYMFONY__ variables </configuration/external_parameters>`.
216216

217217
----

bundles/extension.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ I/O operations and increases the application performance.
141141

142142
.. versionadded:: 3.2
143143

144-
The ``addAnnotatedClassesToCompile()`` method was added in Symfony 3.2.
144+
The ``addAnnotatedClassesToCompile()`` method was introduced in Symfony 3.2.
145145

146146
Your bundles can also add their own classes into this file thanks to the
147147
``addClassesToCompile()`` and ``addAnnotatedClassesToCompile()`` methods (both

components/config/definition.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ above, it is possible to have multiple connection arrays (containing a ``driver`
201201

202202
.. versionadded:: 3.3
203203

204-
The ``castToArray()`` helper was added in Symfony 3.3.
204+
The ``castToArray()`` helper was introduced in Symfony 3.3.
205205

206206
Sometimes, to improve the user experience of your application or bundle, you may
207207
allow to use a simple string or numeric value where an array value is required.

components/dependency_injection/compilation.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ been run, use::
425425

426426
.. versionadded:: 3.2
427427

428-
The option to prioritize compiler passes was added in Symfony 3.2.
428+
The option to prioritize compiler passes was introduced in Symfony 3.2.
429429

430430
You can also control the order in which compiler passes are run for each
431431
compilation phase. Use the optional third argument of ``addCompilerPass()`` to

components/http_foundation.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -595,7 +595,7 @@ class, which can make this even easier::
595595
.. versionadded:: 3.2
596596

597597
The :method:`Symfony\\Component\\HttpFoundation\\JsonResponse::fromJsonString`
598-
method was added in Symfony 3.2.
598+
method was introduced in Symfony 3.2.
599599

600600
The ``JsonResponse`` class sets the ``Content-Type`` header to
601601
``application/json`` and encodes your data to JSON when needed.

components/process.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ Use :method:`Symfony\\Component\\Process\\Process::disableOutput` and
421421
.. versionadded:: 3.1
422422

423423
The ability to pass a callback to these methods when output is disabled
424-
was added in Symfony 3.1.
424+
was introduced in Symfony 3.1.
425425

426426
Finding the Executable PHP Binary
427427
---------------------------------

components/serializer.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -644,7 +644,7 @@ There are several types of normalizers available:
644644

645645
.. versionadded:: 3.4
646646

647-
The ``DateIntervalNormalizer`` normalizer was added in Symfony 3.4.
647+
The ``DateIntervalNormalizer`` normalizer was introduced in Symfony 3.4.
648648

649649
.. _component-serializer-encoders:
650650

contributing/documentation/format.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -191,8 +191,8 @@ describe how the behavior has changed:
191191
192192
.. versionadded:: 3.4
193193
194-
Support for annotation routing without an external bundle was added in
195-
Symfony 3.4. Prior, you needed to install the SensioFrameworkExtraBundle.
194+
Support for annotation routing without an external bundle was introduced
195+
in Symfony 3.4. Prior, you needed to install the SensioFrameworkExtraBundle.
196196
197197
For a deprecation use the ``.. deprecated:: 3.X`` directive:
198198

controller.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ and many others that you'll learn about next.
157157

158158
.. versionadded:: 3.3
159159

160-
The ``AbstractController`` class was added in Symfony 3.3.
160+
The ``AbstractController`` class was introduced in Symfony 3.3.
161161

162162
.. index::
163163
single: Controller; Redirecting
@@ -252,7 +252,7 @@ Fetching Services as Controller Arguments
252252
.. versionadded:: 3.3
253253

254254
The ability to type-hint a controller argument in order to receive a service
255-
was added in Symfony 3.3.
255+
was introduced in Symfony 3.3.
256256

257257
Symfony comes *packed* with a lot of useful objects, called :doc:`services </service_container>`.
258258
These are used for rendering templates, sending emails, querying the database and

service_container.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ service's class or interface name. Want to :doc:`log </logging>` something? No p
5050

5151
.. versionadded:: 3.3
5252

53-
The ability to type-hint a service in order to receive it was added in Symfony 3.3.
53+
The ability to type-hint a service in order to receive it was introduced in Symfony 3.3.
5454
See the :ref:`controller chapter <controller-service-arguments-tag>` for more
5555
details.
5656

@@ -794,7 +794,7 @@ The autoconfigure Option
794794

795795
.. versionadded:: 3.3
796796

797-
The ``autoconfigure`` option was added in Symfony 3.3.
797+
The ``autoconfigure`` option was introduced in Symfony 3.3.
798798

799799
Above, the ``services.yml`` file has ``autoconfigure: true`` in the ``_defaults``
800800
section so that it applies to all services defined in that file. With this setting,

0 commit comments

Comments
 (0)