Skip to content

Remove symfony 5.x version references #18431

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion messenger/multiple_buses.rst
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ You can also restrict the list to a specific bus by providing its name as an arg

.. tip::

Since Symfony 5.1, the command will also show the PHPDoc description of
The command will also show the PHPDoc description of
the message and handler classes.

.. _article about CQRS: https://martinfowler.com/bliki/CQRS.html
2 changes: 1 addition & 1 deletion reference/configuration/framework.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2332,7 +2332,7 @@ package:

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

.. note::

Expand Down
2 changes: 0 additions & 2 deletions service_container/tags.rst
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,6 @@ For example, you may add the following transports as services:
$services = $container->services();

$services->set(\MailerSmtpTransport::class)
// the param() method was introduced in Symfony 5.2.
->args([param('mailer_host')])
->tag('app.mail_transport')
;
Expand Down Expand Up @@ -499,7 +498,6 @@ To answer this, change the service declaration:
$services = $container->services();

$services->set(\MailerSmtpTransport::class)
// the param() method was introduced in Symfony 5.2.
->args([param('mailer_host')])
->tag('app.mail_transport', ['alias' => 'smtp'])
;
Expand Down
2 changes: 1 addition & 1 deletion translation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1069,7 +1069,7 @@ unused translation messages templates:

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

Expand Down