From 145de8e7a407425608b857e679d4d3c9c1c16755 Mon Sep 17 00:00:00 2001 From: Oliver Kossin Date: Wed, 15 Jun 2022 13:05:27 +0200 Subject: [PATCH] Remove deprecated Docs ind "lock" --- lock.rst | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/lock.rst b/lock.rst index 5d864fb0089..688bc3b8c0a 100644 --- a/lock.rst +++ b/lock.rst @@ -286,16 +286,3 @@ each lock using the camel case version of its name suffixed by ``LockFactory`` - e.g. ``invoice`` can be injected automatically by naming the argument ``$invoiceLockFactory`` and type-hinting it with :class:`Symfony\\Component\\Lock\\LockFactory`. - -Blocking Store --------------- - -If you want to use the ``RetryTillSaveStore`` for :ref:`non-blocking locks `, -you can do it by :doc:`decorating the store ` service: - -.. code-block:: yaml - - lock.default.retry_till_save.store: - class: Symfony\Component\Lock\Store\RetryTillSaveStore - decorates: lock.default.store - arguments: ['@.inner', 100, 50]