Skip to content

fix syntax errors and add some more crosslinks #9028

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 1 commit into from
Jan 9, 2018
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
4 changes: 2 additions & 2 deletions components/filesystem/lock_handler.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ LockHandler

.. versionadded:: 3.4
The ``LockHandler`` class was deprecated in Symfony 3.4 and it will be
removed in Symfony 4.0. Use ``SemaphoreStore`` or ``FlockStore`` from the
``Lock`` component instead.
removed in Symfony 4.0. Use :ref:`SemaphoreStore <lock-store-semaphore>`
or :ref:`FlockStore <lock-store-flock>` from the Lock component instead.

What is a Lock?
---------------
Expand Down
4 changes: 2 additions & 2 deletions console/lockable_trait.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Prevent Multiple Executions of a Console Command

A simple but effective way to prevent multiple executions of the same command in
a single server is to use `locks`_. The :doc:`Lock component </components/lock>`
provides multiple classes to create locks based on the filesystem (:ref:`FlockStore <_lock-store-flock>`),
shared memory (:ref:`SemaphoreStore <_lock-store-semaphore>`) and even databases
provides multiple classes to create locks based on the filesystem (:ref:`FlockStore <lock-store-flock>`),
shared memory (:ref:`SemaphoreStore <lock-store-semaphore>`) and even databases
and Redis servers.

In addition, the Console component provides a PHP trait called ``LockableTrait``
Expand Down