summaryrefslogtreecommitdiffstats
path: root/Http/Authentication
diff options
context:
space:
mode:
authorJacob Dreesen <jacob@hdreesen.de>2014-09-25 21:08:05 +0200
committerJacob Dreesen <jacob@hdreesen.de>2014-09-25 21:08:05 +0200
commit16ccb3bf269521af5643927e79b5b3d0eeeefe92 (patch)
tree5b7880ef2bc1e872a8c94a7cf30e734bb2387198 /Http/Authentication
parent4f60b916829c93e32f9c086abdd50dbdec126afb (diff)
downloadsymfony-security-16ccb3bf269521af5643927e79b5b3d0eeeefe92.zip
symfony-security-16ccb3bf269521af5643927e79b5b3d0eeeefe92.tar.gz
symfony-security-16ccb3bf269521af5643927e79b5b3d0eeeefe92.tar.bz2
[Security] fix typo
Diffstat (limited to 'Http/Authentication')
-rw-r--r--Http/Authentication/CustomAuthenticationSuccessHandler.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Http/Authentication/CustomAuthenticationSuccessHandler.php b/Http/Authentication/CustomAuthenticationSuccessHandler.php
index 3e8d8c2..abbb81b 100644
--- a/Http/Authentication/CustomAuthenticationSuccessHandler.php
+++ b/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);
}
}