summaryrefslogtreecommitdiffstats
path: root/lib/Service/FeedServiceV2.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Service/FeedServiceV2.php')
-rw-r--r--lib/Service/FeedServiceV2.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/Service/FeedServiceV2.php b/lib/Service/FeedServiceV2.php
index 9d577db97..d15dfceb7 100644
--- a/lib/Service/FeedServiceV2.php
+++ b/lib/Service/FeedServiceV2.php
@@ -347,13 +347,15 @@ class FeedServiceV2 extends Service
* @param int $id Feed ID
* @param int|null $maxItemID Highest item ID to mark as read
*
+ * @return int
+ *
* @throws ServiceConflictException
* @throws ServiceNotFoundException
*/
- public function read(string $userId, int $id, ?int $maxItemID = null): void
+ public function read(string $userId, int $id, ?int $maxItemID = null): int
{
$feed = $this->find($userId, $id);
- $this->mapper->read($userId, $feed->getId(), $maxItemID);
+ return $this->mapper->read($userId, $feed->getId(), $maxItemID);
}
}