diff --git a/lib/Db/Feed.php b/lib/Db/Feed.php index 843751280..c07873cd1 100644 --- a/lib/Db/Feed.php +++ b/lib/Db/Feed.php @@ -300,9 +300,9 @@ public function getUserId(): string } /** - * @return string + * @return int|null */ - public function getNextUpdateTime(): string + public function getNextUpdateTime(): ?int { return $this->nextUpdateTime; } @@ -661,9 +661,9 @@ public function setUserId(string $userId): Feed } /** - * @param string $nextUpdateTime + * @param int $nextUpdateTime */ - public function setNextUpdateTime(string $nextUpdateTime): void + public function setNextUpdateTime(int $nextUpdateTime): void { $this->nextUpdateTime = $nextUpdateTime; $this->markFieldUpdated('nextUpdateTime');