diff options
Diffstat (limited to 'Http')
-rw-r--r-- | Http/Authentication/CustomAuthenticationSuccessHandler.php | 2 |
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); } } |