From 576442ca25eeab18218dbdc94fd98fcc6cd550dc Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 8 Jan 2025 09:41:38 +0100 Subject: [PATCH] fix(push): Adjust to IUser interface changes Signed-off-by: Joas Schilling --- lib/FakeUser.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lib/FakeUser.php b/lib/FakeUser.php index ee737058a..400fd1d85 100644 --- a/lib/FakeUser.php +++ b/lib/FakeUser.php @@ -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'); }