8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04cb83e commit 7bc31c6Copy full SHA for 7bc31c6
src/Symfony/Component/Security/Http/Tests/EventListener/PasswordMigratingListenerTest.php
@@ -110,7 +110,7 @@ public function testUpgradeWithoutUpgrader()
110
111
private function createPasswordUpgrader()
112
{
113
- return $this->createMock(PasswordUpgraderInterface::class);
+ return $this->createMock(MigratingUserProvider::class);
114
}
115
116
private function createEvent(PassportInterface $passport)
@@ -121,4 +121,7 @@ private function createEvent(PassportInterface $passport)
121
122
abstract class MigratingUserProvider implements UserProviderInterface, PasswordUpgraderInterface
123
124
+ public function upgradePassword(UserInterface $user, string $newEncodedPassword): void
125
+ {
126
+ }
127
0 commit comments