File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -655,7 +655,7 @@ There are **two** ways to deny access to something:
655
655
Securing URL patterns (access_control)
656
656
......................................
657
657
658
- The most basic way to secure part of your application is to secure an entire
658
+ The most basic way to secure parts of your application is to secure an entire
659
659
URL pattern. You saw this earlier, where anything matching the regular expression
660
660
``^/admin `` requires the ``ROLE_ADMIN `` role:
661
661
@@ -1082,8 +1082,7 @@ Next, you'll need to create a route for this URL (but not a controller):
1082
1082
return $collection;
1083
1083
1084
1084
And that's it! By sending a user to ``/logout `` (or whatever you configure
1085
- the ``path `` to be), Symfony will un-authenticate the current user. and
1086
- redirect them the homepage (the value defined by ``target ``).
1085
+ the ``path `` to be), Symfony will un-authenticate the current user.
1087
1086
1088
1087
Once the user has been logged out, they will be redirected to whatever path
1089
1088
is defined by the ``target `` parameter above (e.g. the ``homepage ``).
You can’t perform that action at this time.
0 commit comments