Skip to content

Fix bugs seen by _build/build.php diagnostics in 5.4 #16399

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 17, 2022
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
28 changes: 14 additions & 14 deletions components/lock.rst
Original file line number Diff line number Diff line change
Expand Up @@ -350,20 +350,20 @@ Locks are created and managed in ``Stores``, which are classes that implement

The component includes the following built-in store types:

========================================================= ====== ======== ======== =======
Store Scope Blocking Expiring Sharing
========================================================= ====== ======== ======== =======
:ref:`FlockStore <lock-store-flock>` local yes no yes
:ref:`MemcachedStore <lock-store-memcached>` remote no yes no
:ref:`MongoDbStore <lock-store-mongodb>` remote no yes no
:ref:`PdoStore <lock-store-pdo>` remote no yes no
:ref:`DoctrineDbalStore <lock-store-dbal>` remote no yes no
:ref:`PostgreSqlStore <lock-store-pgsql>` remote yes no yes
:ref:`DoctrineDbalPostgreSqlStore <lock-store-dbal-pgsql>` remote yes no yes
:ref:`RedisStore <lock-store-redis>` remote no yes yes
:ref:`SemaphoreStore <lock-store-semaphore>` local yes no no
:ref:`ZookeeperStore <lock-store-zookeeper>` remote no no no
========================================================= ====== ======== ======== =======
========================================================== ====== ======== ======== =======
Store Scope Blocking Expiring Sharing
========================================================== ====== ======== ======== =======
:ref:`FlockStore <lock-store-flock>` local yes no yes
:ref:`MemcachedStore <lock-store-memcached>` remote no yes no
:ref:`MongoDbStore <lock-store-mongodb>` remote no yes no
:ref:`PdoStore <lock-store-pdo>` remote no yes no
:ref:`DoctrineDbalStore <lock-store-dbal>` remote no yes no
:ref:`PostgreSqlStore <lock-store-pgsql>` remote yes no yes
:ref:`DoctrineDbalPostgreSqlStore <lock-store-dbal-pgsql>` remote yes no yes
:ref:`RedisStore <lock-store-redis>` remote no yes yes
:ref:`SemaphoreStore <lock-store-semaphore>` local yes no no
:ref:`ZookeeperStore <lock-store-zookeeper>` remote no no no
========================================================== ====== ======== ======== =======

.. _lock-store-flock:

Expand Down
2 changes: 1 addition & 1 deletion reference/forms/types/enum.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ EnumType Field
The ``EnumType`` form field was introduced in Symfony 5.4.

A multi-purpose field used to allow the user to "choose" one or more options
defined in a `PHP enumeration`_. It extends the :doc:`ChoiceType </refernce/forms/types/enum>`
defined in a `PHP enumeration`_. It extends the :doc:`ChoiceType </reference/forms/types/enum>`
field and defines the same options.

+---------------------------+----------------------------------------------------------------------+
Expand Down