aboutsummaryrefslogtreecommitdiff
path: root/classes/FeedItem.php
diff options
context:
space:
mode:
authorwn_ <invalid@email.com>2024-11-23 17:43:24 +0000
committerwn_ <invalid@email.com>2024-11-23 17:43:24 +0000
commitabcd0e8ba205aac8bd9006e99d783afc999af0af (patch)
tree8635fcd5b239f18db5ff831c7ef21a290a8ac6d8 /classes/FeedItem.php
parentd4636716fb6e1879098823c2f037db5d8d3f24a0 (diff)
Use native union types in most places.
Diffstat (limited to 'classes/FeedItem.php')
-rw-r--r--classes/FeedItem.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/FeedItem.php b/classes/FeedItem.php
index fd7c54883..ac88ba0bc 100644
--- a/classes/FeedItem.php
+++ b/classes/FeedItem.php
@@ -3,7 +3,7 @@ abstract class FeedItem {
abstract function get_id(): string;
/** @return int|false a timestamp on success, false otherwise */
- abstract function get_date();
+ abstract function get_date(): false|int;
abstract function get_link(): string;
abstract function get_title(): string;