8000 Add missing backticks to defaults by alamirault · Pull Request #18294 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

Add missing backticks to defaults #18294

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
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
2 changes: 1 addition & 1 deletion reference/configuration/framework.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1117,7 +1117,7 @@ Use ``0`` to not limit the duration.
max_duration
............

**type**: ``float`` **default**: 0
**type**: ``float`` **default**: ``0``

The maximum execution time, in seconds, that the request and the response are
allowed to take. A value lower than or equal to 0 means it is unlimited.
Expand Down
4 changes: 2 additions & 2 deletions reference/constraints/Collection.rst
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ Options
``allowExtraFields``
~~~~~~~~~~~~~~~~~~~~

**type**: ``boolean`` **default**: false
**type**: ``boolean`` **default**: ``false``

If this option is set to ``false`` and the underlying collection contains
one or more elements that are not included in the `fields`_ option, a validation
Expand All @@ -388,7 +388,7 @@ error will be returned. If set to ``true``, extra fields are OK.
``allowMissingFields``
~~~~~~~~~~~~~~~~~~~~~~

**type**: ``boolean`` **default**: false
**type**: ``boolean`` **default**: ``false``

If this option is set to ``false`` and one or more fields from the `fields`_
option are not present in the underlying collection, a validation error
Expand Down
2 changes: 1 addition & 1 deletion reference/constraints/Count.rst
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ Options
``divisibleBy``
~~~~~~~~~~~~~~~

**type**: ``integer`` **default**: null
**type**: ``integer`` **default**: ``null``

.. versionadded:: 5.1

Expand Down
2 changes: 1 addition & 1 deletion reference/constraints/Regex.rst
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ Options
``htmlPattern``
~~~~~~~~~~~~~~~

**type**: ``string|boolean`` **default**: null
**type**: ``string|boolean`` **default**: ``null``

This option specifies the pattern to use in the HTML5 ``pattern`` attribute.
You usually don't need to specify this option because by default, the constraint
Expand Down
2 changes: 1 addition & 1 deletion reference/forms/types/options/help.rst.inc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
help
~~~~

**type**: ``string`` or ``TranslatableMessage`` **default**: null
**type**: ``string`` or ``TranslatableMessage`` **default**: ``null``

Allows you to define a help message for the form field, which by default is
rendered below the field::
Expand Down
0