From 1226dc121f8ed5fdbedfdbbb8dc56c346c294edb Mon Sep 17 00:00:00 2001 From: Jacob Dreesen Date: Thu, 25 Sep 2014 21:08:05 +0200 Subject: [PATCH] [Security] fix typo --- .../Http/Authentication/CustomAuthenticationSuccessHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Security/Http/Authentication/CustomAuthenticationSuccessHandler.php b/src/Symfony/Component/Security/Http/Authentication/CustomAuthenticationSuccessHandler.php index 3e8d8c277a..abbb81b0f8 100644 --- a/src/Symfony/Component/Security/Http/Authentication/CustomAuthenticationSuccessHandler.php +++ b/src/Symfony/Component/Security/Http/Authentication/CustomAuthenticationSuccessHandler.php @@ -34,7 +34,7 @@ class CustomAuthenticationSuccessHandler implements AuthenticationSuccessHandler if (method_exists($handler, 'setOptions')) { $this->handler->setOptions($options); } - if (method_exists($providerKey, 'setProviderKey')) { + if (method_exists($handler, 'setProviderKey')) { $this->handler->setProviderKey($providerKey); } }