diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2023-10-25 12:55:09 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2023-10-25 12:55:09 +0300 |
| commit | 865ecc87963dc3b26e66296616eef2a1cc41ac3f (patch) | |
| tree | bf2ecd8a391103bdb2c8b70cd33c47467310754b /classes/feeditem.php | |
| parent | 0a5507d3bd79d04c860455664f919bf8e7274fda (diff) | |
move to psr-4 autoloader
Diffstat (limited to 'classes/feeditem.php')
| -rw-r--r-- | classes/feeditem.php | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/classes/feeditem.php b/classes/feeditem.php deleted file mode 100644 index fd7c54883..000000000 --- a/classes/feeditem.php +++ /dev/null @@ -1,24 +0,0 @@ -<?php -abstract class FeedItem { - abstract function get_id(): string; - - /** @return int|false a timestamp on success, false otherwise */ - abstract function get_date(); - - abstract function get_link(): string; - abstract function get_title(): string; - abstract function get_description(): string; - abstract function get_content(): string; - abstract function get_comments_url(): string; - abstract function get_comments_count(): int; - - /** @return array<int, string> */ - abstract function get_categories(): array; - - /** @return array<int, FeedEnclosure> */ - abstract function get_enclosures(): array; - - abstract function get_author(): string; - abstract function get_language(): string; -} - |