Skip to content

Commit 3631213

Browse files
authored
Merge branch '5.4' into ux-docs-in-bundles-section
2 parents 1cddbd4 + f12fac8 commit 3631213

File tree

12 files changed

+485
-238
lines changed

12 files changed

+485
-238
lines changed

.doctor-rst.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ whitelist:
8989
- '.. versionadded:: 1.11' # MakerBundle
9090
- '.. versionadded:: 1.3' # MakerBundle
9191
- '.. versionadded:: 1.8' # MakerBundle
92-
- '.. versionadded:: 1.6' # Flex in setup/upgrade_minor.rst
92+
- '.. versionadded:: 1.18' # Flex in setup/upgrade_minor.rst
9393
- '.. versionadded:: 1.0.0' # Encore
9494
- '0 => 123' # assertion for var_dumper - components/var_dumper.rst
9595
- '1 => "foo"' # assertion for var_dumper - components/var_dumper.rst

_images/security/profiler-badges.png

148 KB
Loading

components/lock.rst

+14-14
Original file line numberDiff line numberDiff line change
@@ -350,20 +350,20 @@ Locks are created and managed in ``Stores``, which are classes that implement
350350

351351
The component includes the following built-in store types:
352352

353-
========================================================= ====== ======== ======== =======
354-
Store Scope Blocking Expiring Sharing
355-
========================================================= ====== ======== ======== =======
356-
:ref:`FlockStore <lock-store-flock>` local yes no yes
357-
:ref:`MemcachedStore <lock-store-memcached>` remote no yes no
358-
:ref:`MongoDbStore <lock-store-mongodb>` remote no yes no
359-
:ref:`PdoStore <lock-store-pdo>` remote no yes no
360-
:ref:`DoctrineDbalStore <lock-store-dbal>` remote no yes no
361-
:ref:`PostgreSqlStore <lock-store-pgsql>` remote yes no yes
362-
:ref:`DoctrineDbalPostgreSqlStore <lock-store-dbal-pgsql>` remote yes no yes
363-
:ref:`RedisStore <lock-store-redis>` remote no yes yes
364-
:ref:`SemaphoreStore <lock-store-semaphore>` local yes no no
365-
:ref:`ZookeeperStore <lock-store-zookeeper>` remote no no no
366-
========================================================= ====== ======== ======== =======
353+
========================================================== ====== ======== ======== =======
354+
Store Scope Blocking Expiring Sharing
355+
========================================================== ====== ======== ======== =======
356+
:ref:`FlockStore <lock-store-flock>` local yes no yes
357+
:ref:`MemcachedStore <lock-store-memcached>` remote no yes no
358+
:ref:`MongoDbStore <lock-store-mongodb>` remote no yes no
359+
:ref:`PdoStore <lock-store-pdo>` remote no yes no
360+
:ref:`DoctrineDbalStore <lock-store-dbal>` remote no yes no
361+
:ref:`PostgreSqlStore <lock-store-pgsql>` remote yes no yes
362+
:ref:`DoctrineDbalPostgreSqlStore <lock-store-dbal-pgsql>` remote yes no yes
363+
:ref:`RedisStore <lock-store-redis>` remote no yes yes
364+
:ref:`SemaphoreStore <lock-store-semaphore>` local yes no no
365+
:ref:`ZookeeperStore <lock-store-zookeeper>` remote no no no
366+
========================================================== ====== ======== ======== =======
367367

368368
.. _lock-store-flock:
369369

create_framework/templating.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,5 +178,5 @@ As always, you can decide to stop here and use the framework as is; it's
178178
probably all you need to create simple websites like those fancy one-page
179179
`websites`_ and hopefully a few others.
180180

181-
.. _`callbacks`: https://www.php.net/callback#language.types.callback
181+
.. _`callbacks`: https://www.php.net/manual/en/language.types.callable.php
182182
.. _`websites`: https://kottke.org/08/02/single-serving-sites

index.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ Components
7171
.. toctree::
7272
:hidden:
7373

74-
components/index
74+
components/
7575

76-
Read the :doc:`Components </components/index>` documentation.
76+
Read the :doc:`Components </components/>` documentation.
7777

7878
Reference Documents
7979
-------------------

performance.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ Symfony generates a file with the list of classes to preload in the
119119
; required for opcache.preload:
120120
opcache.preload_user=www-data
121121
122-
If this file is missing, run this command to reinstall the Symfony Flex recipe:
123-
``composer recipes:install symfony/framework-bundle --force -v``.
122+
If this file is missing, run this command to update the Symfony Flex recipe:
123+
``composer recipes:update symfony/framework-bundle``.
124124

125125
Use the :ref:`container.preload <dic-tags-container-preload>` and
126126
:ref:`container.no_preload <dic-tags-container-nopreload>` service tags to define

reference/forms/types/enum.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ EnumType Field
99
The ``EnumType`` form field was introduced in Symfony 5.4.
1010

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

1515
+---------------------------+----------------------------------------------------------------------+

reference/forms/types/map.rst.inc

+11-4
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,15 @@ Other Fields
4242

4343
* :doc:`CheckboxType </reference/forms/types/checkbox>`
4444
* :doc:`FileType </reference/forms/types/file>`
45-
* `DropzoneType`_
4645
* :doc:`RadioType </reference/forms/types/radio>`
47-
* `CropperType`_ (to crop images with JavaScript)
46+
47+
Symfony UX Fields
48+
~~~~~~~~~~~~~~~~~
49+
50+
These types are part of the `Symfony UX initiative`_:
51+
52+
* `CropperType`_ (using Cropper.js)
53+
* `DropzoneType`_
4854

4955
UID Fields
5056
~~~~~~~~~~
@@ -75,5 +81,6 @@ Base Fields
7581

7682
* :doc:`FormType </reference/forms/types/form>`
7783

78-
.. _`DropzoneType`: https://symfony.com/bundles/ux-dropzone/current/index.html
79-
.. _`CropperType`: https://symfony.com/bundles/ux-cropperjs/current/index.html
84+
.. _`Symfony UX initiative`: https://github.com/symfony/ux#readme
85+
.. _`CropperType`: https://github.com/symfony/ux/tree/2.x/src/Cropperjs#readme
86+
.. _`DropzoneType`: https://github.com/symfony/ux/tree/2.x/src/Dropzone#readme

0 commit comments

Comments
 (0)