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 4687677 commit e7947daCopy full SHA for e7947da
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