Skip to content

Commit

Permalink
fix: Fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
famoser committed Dec 1, 2024
1 parent cbd1c3f commit 1b93d21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Controller/LoginController.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ protected function loginUser(Request $request, UserInterface $user)
$this->get('security.token_storage')->setToken($token);

$event = new InteractiveLoginEvent($request, $token);
$this->get('event_dispatcher')->dispatch('security.interactive_login', $event);
$this->get('event_dispatcher')->dispatch($event);
}

/**
Expand Down

0 comments on commit 1b93d21

Please sign in to comment.