diff --git a/lib/FakeUser.php b/lib/FakeUser.php index ee737058..400fd1d8 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'); }