diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2024-11-24 06:36:58 +0000 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2024-11-24 06:36:58 +0000 |
| commit | 7892b412348c03f2b6733a326776a47d980fd7f6 (patch) | |
| tree | 8635fcd5b239f18db5ff831c7ef21a290a8ac6d8 /classes/FeedItem.php | |
| parent | d4636716fb6e1879098823c2f037db5d8d3f24a0 (diff) | |
| parent | abcd0e8ba205aac8bd9006e99d783afc999af0af (diff) | |
Merge branch 'feature/php8-union-types' into 'master'
Use native union types in most places.
See merge request tt-rss/tt-rss!80
Diffstat (limited to 'classes/FeedItem.php')
| -rw-r--r-- | classes/FeedItem.php | 2 |
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; |