Skip to content

Commit

Permalink
fix(push): Adjust to IUser interface changes
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen committed Jan 8, 2025
1 parent 38de8d4 commit 576442c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions lib/FakeUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,15 @@ public function setDisplayName($displayName) {
throw new \RuntimeException('Not implemented');
}

public function getLastLogin() {
public function getLastLogin(): int {
throw new \RuntimeException('Not implemented');
}

public function updateLastLoginTimestamp() {
public function getFirstLogin(): int {
throw new \RuntimeException('Not implemented');
}

public function updateLastLoginTimestamp(): bool {
throw new \RuntimeException('Not implemented');
}

Expand Down

0 comments on commit 576442c

Please sign in to comment.