From 29d53c53a4522e046ea520a38cdd85fe9b33ba63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Mon, 8 Apr 2024 13:45:37 +0200 Subject: [PATCH] fixup! Fix configuration and usage of password hasher --- .../ChillMainBundle/Tests/Controller/UserControllerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Bundle/ChillMainBundle/Tests/Controller/UserControllerTest.php b/src/Bundle/ChillMainBundle/Tests/Controller/UserControllerTest.php index 073e07ff8..483211020 100644 --- a/src/Bundle/ChillMainBundle/Tests/Controller/UserControllerTest.php +++ b/src/Bundle/ChillMainBundle/Tests/Controller/UserControllerTest.php @@ -139,7 +139,7 @@ final class UserControllerTest extends WebTestCase { /** @var \Symfony\Component\PasswordHasher\Hasher\UserPasswordHasher $passwordEncoder */ $passwordEncoder = self::getContainer() - ->get(\Symfony\Component\PasswordHasher\Hasher\UserPasswordHasherInterface::class); + ->get(UserPasswordHasherInterface::class); $user = self::getContainer()->get(UserRepositoryInterface::class) ->findOneBy(['username' => $username]);