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.php21
1 files changed, 0 insertions, 21 deletions
diff --git a/lib/Db/Feed.php b/lib/Db/Feed.php
index 80d425117..852de4c78 100644
--- a/lib/Db/Feed.php
+++ b/lib/Db/Feed.php
@@ -184,14 +184,6 @@ class Feed extends Entity implements IAPI, \JsonSerializable
}
/**
- * @return int
- */
- public function getId(): int
- {
- return $this->id;
- }
-
- /**
* @return string|null
*/
public function getLastModified(): ?string
@@ -476,19 +468,6 @@ class Feed extends Entity implements IAPI, \JsonSerializable
}
/**
- * @param int $id
- */
- public function setId(int $id): Feed
- {
- if ($this->id !== $id) {
- $this->id = $id;
- $this->markFieldUpdated('id');
- }
-
- return $this;
- }
-
- /**
* @param string|null $lastModified
*/
public function setLastModified(?string $lastModified = null): Feed