From acc31abcef1beb880a49ef33acd035e88695d8d6 Mon Sep 17 00:00:00 2001 From: Christopher Ng Date: Fri, 5 Jul 2024 15:22:40 -0700 Subject: [PATCH] feat: Adapt FakeUser to new IUser Signed-off-by: Christopher Ng --- lib/FakeUser.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/FakeUser.php b/lib/FakeUser.php index 78e083f5..45ce6c00 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'); + } }