summaryrefslogtreecommitdiffstats
path: root/lib/Db/Feed.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Db/Feed.php')
-rw-r--r--lib/Db/Feed.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/Db/Feed.php b/lib/Db/Feed.php
index 898a93718..e6bd73481 100644
--- a/lib/Db/Feed.php
+++ b/lib/Db/Feed.php
@@ -46,8 +46,8 @@ class Feed extends Entity implements IAPI, \JsonSerializable
protected $articlesPerUpdate = 0;
/** @var string|null */
protected $httpLastModified = null;
- /** @var int|null */
- protected $lastModified = 0;
+ /** @var string|null */
+ protected $lastModified = '0';
/** @var string|null */
protected $httpEtag = null;
/** @var string|null */
@@ -158,7 +158,7 @@ class Feed extends Entity implements IAPI, \JsonSerializable
}
/**
- * @return int|null
+ * @return string|null
*/
public function getLastModified()
{
@@ -433,9 +433,9 @@ class Feed extends Entity implements IAPI, \JsonSerializable
}
/**
- * @param int|null $lastModified
+ * @param string|null $lastModified
*/
- public function setLastModified(int $lastModified = null)
+ public function setLastModified(string $lastModified = null)
{
if ($this->lastModified !== $lastModified) {
$this->lastModified = $lastModified;