summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/Db/Item.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Db/Item.php b/lib/Db/Item.php
index e601b03cb..63d1d158f 100644
--- a/lib/Db/Item.php
+++ b/lib/Db/Item.php
@@ -51,7 +51,7 @@ class Item extends Entity implements IAPI, \JsonSerializable
protected $mediaThumbnail;
/** @var string|null */
protected $mediaDescription;
- /** @var int|null */
+ /** @var int */
protected $feedId;
/** @var string|null */
protected $lastModified = '0';
@@ -435,7 +435,7 @@ class Item extends Entity implements IAPI, \JsonSerializable
return $this;
}
- public function setFeedId(?int $feedId = null): self
+ public function setFeedId(int $feedId): self
{
if ($this->feedId !== $feedId) {
$this->feedId = $feedId;