From a89df28e21f177dc6093af8884d0a8c98f6c3efa Mon Sep 17 00:00:00 2001 From: MoukrimKhouloud Date: Fri, 17 Mar 2017 15:58:01 +0000 Subject: [PATCH] Update custom_authentication_provider --- security/custom_authentication_provider.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/security/custom_authentication_provider.rst b/security/custom_authentication_provider.rst index 7549bdb2cff..68f3e2d0ca0 100644 --- a/security/custom_authentication_provider.rst +++ b/security/custom_authentication_provider.rst @@ -142,9 +142,9 @@ set an authenticated token in the token storage if successful. $token = new WsseUserToken(); $token->setUser($matches[1]); - $token->digest = $matches[2]; - $token->nonce = $matches[3]; - $token->created = $matches[4]; + $token->digest = $matches[2]; + $token->nonce = $matches[3]; + $token->created = $matches[4]; try { $authToken = $this->authenticationManager->authenticate($token);