diff --git a/lib/FakeUser.php b/lib/FakeUser.php index 78e083f52..45ce6c001 100644 --- a/lib/FakeUser.php +++ b/lib/FakeUser.php @@ -124,4 +124,12 @@ public function getManagerUids(): array { public function setManagerUids(array $uids): void { throw new \RuntimeException('Not implemented'); } + + public function getPasswordHash(): ?string { + throw new \RuntimeException('Not implemented'); + } + + public function setPasswordHash(string $passwordHash): bool { + throw new \RuntimeException('Not implemented'); + } }