Skip to content

Commit

Permalink
feat: Adapt FakeUser to new IUser
Browse files Browse the repository at this point in the history
Signed-off-by: Christopher Ng <chrng8@gmail.com>
  • Loading branch information
Pytal committed Jul 5, 2024
1 parent 45ce0da commit acc31ab
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lib/FakeUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
}
}

0 comments on commit acc31ab

Please sign in to comment.