Skip to content

Commit d3c7fcb

Browse files
committed
Merge branch '4.4' into 5.1
* 4.4: fix link to `ChainAdapter::prune` method [Messenger] rename message recorder file [PropertyAccess] Backport typed property support to 4.4 Fix minor typo
2 parents 6d37db1 + adc4630 commit d3c7fcb

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

_build/redirection_map

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -508,3 +508,4 @@
508508
/frontend/encore/versus-assetic /frontend
509509
/components/http_client /http_client
510510
/components/mailer /mailer
511+
/messenger/message-recorder messenger/dispatch_after_current_bus

components/cache/adapters/chain_adapter.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ slowest storage engines, :class:`Symfony\\Component\\Cache\\Adapter\\ApcuAdapter
4444
new FilesystemAdapter(),
4545
]);
4646

47-
When calling this adapter's :method:`Symfony\\Component\\Cache\\ChainAdapter::prune` method,
47+
When calling this adapter's :method:`Symfony\\Component\\Cache\\Adapter\\ChainAdapter::prune` method,
4848
the call is delegated to all its compatible cache adapters. It is safe to mix both adapters
4949
that *do* and do *not* implement :class:`Symfony\\Component\\Cache\\PruneableInterface`, as
5050
incompatible adapters are silently ignored::

components/property_info.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,9 +293,9 @@ string values: ``array``, ``bool``, ``callable``, ``float``, ``int``,
293293
Constants inside the :class:`Symfony\\Component\\PropertyInfo\\Type`
294294
class, in the form ``Type::BUILTIN_TYPE_*``, are provided for convenience.
295295

296-
.. versionadded:: 5.1
296+
.. versionadded:: 4.4
297297

298-
Support for typed properties (added in PHP 7.4) was introduced in Symfony 5.1.
298+
Support for typed properties (added in PHP 7.4) was introduced in Symfony 4.4.
299299

300300
``Type::isNullable()``
301301
~~~~~~~~~~~~~~~~~~~~~~

messenger.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1491,7 +1491,7 @@ for each bus looks like this:
14911491
#. ``add_bus_name_stamp_middleware`` - adds a stamp to record which bus this
14921492
message was dispatched into;
14931493

1494-
#. ``dispatch_after_current_bus``- see :doc:`/messenger/message-recorder`;
1494+
#. ``dispatch_after_current_bus``- see :doc:`/messenger/dispatch_after_current_bus`;
14951495

14961496
#. ``failed_message_processing_middleware`` - processes messages that are being
14971497
retried via the :ref:`failure transport <messenger-failure-transport>` to make

migration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ that different paths were handled by different PHP files.
188188
In any case you have to create a ``public/index.php`` that will start
189189
your Symfony application by either copying the file from the
190190
``FrameworkBundle``-recipe or by using Flex and requiring the
191-
FrameworkBundle. You will also likely have to update you web server
191+
FrameworkBundle. You will also likely have to update your web server
192192
(e.g. Apache or nginx) to always use this front controller. You can
193193
look at :doc:`Web Server Configuration </setup/web_server_configuration>`
194194
for examples on how this might look. For example when using Apache you can

0 commit comments

Comments
 (0)