@@ -75,7 +75,7 @@ basic authentication:
75
75
Each firewall configuration is activated when the incoming request matches the
76
76
regular expression defined by the ``pattern `` setting. This pattern must match
77
77
the request path info (``preg_match('#^'.PATTERN_VALUE.'$#',
78
- $request->getPathInfo()) ``.)
78
+ $request->getPathInfo()) ``).
79
79
80
80
.. tip ::
81
81
@@ -155,7 +155,7 @@ X.509 certificate, an Authorization HTTP header, or use a form to login.
155
155
authentication mechanisms, Symfony2 automatically defines a default entry
156
156
point (in the example above, the login form; but if the user send an
157
157
Authorization HTTP header with wrong credentials, Symfony2 will use the
158
- HTTP basic entry point.)
158
+ HTTP basic entry point).
159
159
160
160
.. note ::
161
161
@@ -499,7 +499,7 @@ working configuration for Apache:
499
499
</VirtualHost >
500
500
501
501
By default, the username is the email declared in the certificate (the value
502
- of the ``SSL_CLIENT_S_DN_Email `` environment variable.)
502
+ of the ``SSL_CLIENT_S_DN_Email `` environment variable).
503
503
504
504
.. tip ::
505
505
@@ -549,7 +549,7 @@ restricted by a more restrictive access control rule:
549
549
As anonymous users are authenticated, the ``isAuthenticated() `` method returns
550
550
``true ``. To check is the user is anonymous, check for the
551
551
``IS_AUTHENTICATED_ANONYMOUSLY `` role instead (note that all non-anonymous
552
- users have the ``IS_AUTHENTICATED_FULLY `` role.)
552
+ users have the ``IS_AUTHENTICATED_FULLY `` role).
553
553
554
554
.. index ::
555
555
single: Security; Stateless Authentication
@@ -606,7 +606,7 @@ Impersonating a User
606
606
607
607
Sometimes, it's useful to be able to switch from one user to another without
608
608
having to logout and login again (for instance when you are debugging or try
609
- to understand a bug a user see and you cannot reproduce.) This can be easily
609
+ to understand a bug a user see and you cannot reproduce). This can be easily
610
610
done by activating the ``switch-user `` listener:
611
611
612
612
.. configuration-block ::
0 commit comments