From dfb29e8b6b4e68273c69c6c2b26734d1745ab6b4 Mon Sep 17 00:00:00 2001 From: ofetisov Date: Fri, 4 Oct 2019 16:50:48 +0300 Subject: [PATCH] Fix non-existent method call in ResetAction --- src/Action/ResetAction.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Action/ResetAction.php b/src/Action/ResetAction.php index cbafae8b7..5ad3e465b 100644 --- a/src/Action/ResetAction.php +++ b/src/Action/ResetAction.php @@ -161,7 +161,7 @@ public function __invoke(Request $request, $token): Response } catch (AccountStatusException $ex) { // We simply do not authenticate users which do not pass the user // checker (not enabled, expired, etc.). - $this->getLogger()->warning(sprintf( + $this->logger->warning(sprintf( 'Unable to login user %d after password reset', $user->getId() ), ['exception' => $ex]);