From 6e78d753fad60e3994b13081ce385be8539098b9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Mon, 13 Oct 2025 15:41:00 +0200 Subject: [PATCH] Update checkPostAuth prototype --- Checker/UserChecker.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Checker/UserChecker.php b/Checker/UserChecker.php index dc1e531..67e6b21 100644 --- a/Checker/UserChecker.php +++ b/Checker/UserChecker.php @@ -25,7 +25,7 @@ class UserChecker extends InMemoryUserChecker { /** * {@inheritdoc} */ - public function checkPostAuth(UserInterface $user): void { + public function checkPostAuth(UserInterface $user, ?TokenInterface $token = null): void { //Without User instance if (!$user instanceof User) { return; -- 2.41.3