8000 add missing brackets by OskarStark · Pull Request #11201 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

add missing brackets #11201

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
Mar 22, 2019
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 form/form_customization.rst
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ Variable Usage
``block_prefixes`` An array of all the names of the parent types.
``cache_key`` A unique key which is used for caching.
``compound`` Whether or not a field is actually a holder for a group of children fields
(for example, a ``choice`` field, which is actually a group of checkboxes.
(for example, a ``choice`` field, which is actually a group of checkboxes).
``data`` The normalized data of the type.
``disabled`` If ``true``, ``disabled="disabled"`` is added to the field.
``errors`` An array of any errors attached to *this* specific field (e.g. ``form.title.errors``).
Expand Down
1 change: 1 addition & 0 deletions quick_tour/flex_recipes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ Thanks to Flex, after one command, you can start using Twig immediately:
+ 'name' => $name,
+ ]);
}
}

By extending ``AbstractController``, you now have access to a number of shortcut
methods and tools, like ``render()``. Create the new template:
Expand Down
2 changes: 1 addition & 1 deletion security/access_control.rst
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ Take the following ``access_control`` entries as an example:
'role' => 'ROLE_USER_PORT',
'ip' => '127.0.0.1',
'port' => '8080',
),
],
[
'path' => '^/admin',
'role' => 'ROLE_USER_HOST',
Expand Down
0