From d9f931ab2dfd7c9be49ee32ddeb1fe670aac7661 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Mon, 11 Jan 2016 09:09:34 +0100 Subject: [PATCH 1/2] [#5303] escape namespace backslashes in class role --- components/security/authentication.rst | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/components/security/authentication.rst b/components/security/authentication.rst index 3fd17383d2a..35aed4fe69a 100644 --- a/components/security/authentication.rst +++ b/components/security/authentication.rst @@ -273,14 +273,14 @@ Authentication Events The security component provides 4 related authentication events: -=============================== ================================================ ========================================================================= +=============================== ================================================ ============================================================================== Name Event Constant Argument Passed to the Listener -=============================== ================================================ ========================================================================= -security.authentication.success ``AuthenticationEvents::AUTHENTICATION_SUCCESS`` :class:`Symfony\Component\Security\Core\Event\AuthenticationEvent` -security.authentication.failure ``AuthenticationEvents::AUTHENTICATION_FAILURE`` :class:`Symfony\Component\Security\Core\Event\AuthenticationFailureEvent` -security.interactive_login ``SecurityEvents::INTERACTIVE_LOGIN`` :class:`Symfony\Component\Security\Http\Event\InteractiveLoginEvent` -security.switch_user ``SecurityEvents::SWITCH_USER`` :class:`Symfony\Component\Security\Http\Event\SwitchUserEvent` -=============================== ================================================ ========================================================================= +=============================== ================================================ ============================================================================== +security.authentication.success ``AuthenticationEvents::AUTHENTICATION_SUCCESS`` :class:`Symfony\\Component\\Security\\Core\\Event\\AuthenticationEvent` +security.authentication.failure ``AuthenticationEvents::AUTHENTICATION_FAILURE`` :class:`Symfony\\Component\\Security\\Core\\Event\\AuthenticationFailureEvent` +security.interactive_login ``SecurityEvents::INTERACTIVE_LOGIN`` :class:`Symfony\\Component\\Security\\Http\\Event\\InteractiveLoginEvent` +security.switch_user ``SecurityEvents::SWITCH_USER`` :class:`Symfony\\Component\\Security\\Http\\Event\\SwitchUserEvent` +=============================== ================================================ ============================================================================== Authentication Success and Failure Events ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ From b9d6dc6ed8f22cba4e813a8c2895c60f93576eae Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Mon, 11 Jan 2016 09:21:53 +0100 Subject: [PATCH 2/2] remove doubled colon from label --- book/controller.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/controller.rst b/book/controller.rst index 9d929b52566..e6a5cf625fe 100644 --- a/book/controller.rst +++ b/book/controller.rst @@ -813,7 +813,7 @@ Just like when creating a controller for a route, the order of the arguments of order of the arguments, Symfony will still pass the correct value to each variable. -.. _checking-the-validity-of-a-csrf-token:: +.. _checking-the-validity-of-a-csrf-token: Validating a CSRF Token -----------------------