Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
Grotax committed Dec 19, 2024
1 parent 4ccea46 commit d3a4751
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/Db/Feed.php
Original file line number Diff line number Diff line change
Expand Up @@ -300,9 +300,9 @@ public function getUserId(): string
}

/**
* @return string
* @return int|null
*/
public function getNextUpdateTime(): string
public function getNextUpdateTime(): ?int
{
return $this->nextUpdateTime;
}
Expand Down Expand Up @@ -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');
Expand Down

0 comments on commit d3a4751

Please sign in to comment.