Skip to content

Commit 6bb7743

Browse files
committed
minor #18431 Remove symfony 5.x version references (alamirault)
This PR was merged into the 6.2 branch. Discussion ---------- Remove symfony 5.x version references I think they should have been in `versionadded` directive and not in sentences I'm right ? Commits ------- 5055fa7 Remove symfony 5.x version references
2 parents 8eeba23 + 5055fa7 commit 6bb7743

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

messenger/multiple_buses.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ You can also restrict the list to a specific bus by providing its name as an arg
277277
278278
.. tip::
279279

280-
Since Symfony 5.1, the command will also show the PHPDoc description of
280+
The command will also show the PHPDoc description of
281281
the message and handler classes.
282282

283283
.. _article about CQRS: https://martinfowler.com/bliki/CQRS.html

reference/configuration/framework.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2332,7 +2332,7 @@ package:
23322332

23332333
If you request an asset that is *not found* in the ``manifest.json`` file, the original -
23342334
*unmodified* - asset path will be returned.
2335-
Since Symfony 5.4, you can set ``strict_mode`` to ``true`` to get an exception when an asset is *not found*.
2335+
You can set ``strict_mode`` to ``true`` to get an exception when an asset is *not found*.
23362336

23372337
.. note::
23382338

service_container/tags.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,6 @@ For example, you may add the following transports as services:
331331
$services = $container->services();
332332
333333
$services->set(\MailerSmtpTransport::class)
334-
// the param() method was introduced in Symfony 5.2.
335334
->args([param('mailer_host')])
336335
->tag('app.mail_transport')
337336
;
@@ -499,7 +498,6 @@ To answer this, change the service declaration:
499498
$services = $container->services();
500499
501500
$services->set(\MailerSmtpTransport::class)
502-
// the param() method was introduced in Symfony 5.2.
503501
->args([param('mailer_host')])
504502
->tag('app.mail_transport', ['alias' => 'smtp'])
505503
;

translation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1069,7 +1069,7 @@ unused translation messages templates:
10691069

10701070
The extractors can't find messages translated outside templates (like form
10711071
labels or controllers) unless using :ref:`translatable-objects` or calling
1072-
the ``trans()`` method on a translator (since Symfony 5.3). Dynamic
1072+
the ``trans()`` method on a translator. Dynamic
10731073
translations using variables or expressions in templates are not
10741074
detected either:
10751075

0 commit comments

Comments
 (0)