Skip to content

[Security] Update request matcher doc #19322

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
Dec 21, 2023
Merged
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
8 changes: 4 additions & 4 deletions security/access_control.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ things:
1. Matching Options
-------------------

Symfony creates an instance of :class:`Symfony\\Component\\HttpFoundation\\RequestMatcher`
for each ``access_control`` entry, which determines whether or not a given
access control should be used on this request. The following ``access_control``
options are used for matching:
Symfony uses :class:`Symfony\\Component\\HttpFoundation\\ChainRequestMatcher` for
each ``access_control`` entry, which determines which implementation of
:class:`Symfony\\Component\\HttpFoundation\\RequestMatcherInterface` should be used
on this request. The following ``access_control`` options are used for matching:

* ``path``: a regular expression (without delimiters)
* ``ip`` or ``ips``: netmasks are also supported (can be a comma-separated string)
Expand Down