summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Http/Firewall/AbstractAuthenticationListener.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Http/Firewall/AbstractAuthenticationListener.php b/Http/Firewall/AbstractAuthenticationListener.php
index 2a07cfa..a79e63b 100644
--- a/Http/Firewall/AbstractAuthenticationListener.php
+++ b/Http/Firewall/AbstractAuthenticationListener.php
@@ -229,7 +229,7 @@ abstract class AbstractAuthenticationListener implements ListenerInterface
}
if (null !== $this->successHandler) {
- $response = $this->successHandler->onAuthenticationSuccess($request, $token);
+ $response = $this->successHandler->onAuthenticationSuccess($event, $request, $token);
} else {
$response = new Response();
$path = $this->determineTargetUrl($request);