summaryrefslogtreecommitdiffstats
path: root/lib/Fetcher/IFeedFetcher.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Fetcher/IFeedFetcher.php')
-rw-r--r--lib/Fetcher/IFeedFetcher.php27
1 files changed, 8 insertions, 19 deletions
diff --git a/lib/Fetcher/IFeedFetcher.php b/lib/Fetcher/IFeedFetcher.php
index c96bd315b..ecc0ffc16 100644
--- a/lib/Fetcher/IFeedFetcher.php
+++ b/lib/Fetcher/IFeedFetcher.php
@@ -19,29 +19,18 @@ interface IFeedFetcher
/**
* Fetch feed content.
*
- * @param string $url remote url of the feed
- * @param boolean $getFavicon if the favicon should also be fetched, defaults to true
- * @param string $lastModified a last modified value from an http header defaults to false.
+ * @param string $url remote url of the feed
+ * @param boolean $favicon if the favicon should also be fetched, defaults to true
+ * @param string|null $lastModified a last modified value from an http header defaults to false.
* If lastModified matches the http header from the feed no results are fetched
- * @param string $etag an etag from an http header.
- * If lastModified matches the http header from the feed no results are fetched
- * @param bool $fullTextEnabled if true tells the fetcher to enhance the articles by fetching more content
- * @param string $basicAuthUser if given, basic auth is set for this feed
- * @param string $basicAuthPassword if given, basic auth is set for this feed. Ignored if user is empty
+ * @param string|null $user if given, basic auth is set for this feed
+ * @param string|null $password if given, basic auth is set for this feed. Ignored if user is empty
*
- * @throws FetcherException if the fetcher encounters a problem
* @return array an array containing the new feed and its items, first
* element being the Feed and second element being an array of Items
+ * @throws FetcherException if the fetcher encounters a problem
*/
- public function fetch(
- $url,
- $getFavicon = true,
- $lastModified = null,
- $etag = null,
- $fullTextEnabled = false,
- $basicAuthUser = null,
- $basicAuthPassword = null
- );
+ public function fetch(string $url, bool $favicon, $lastModified, $user, $password): array;
/**
* Can a fetcher handle a feed.
@@ -51,5 +40,5 @@ interface IFeedFetcher
* @return boolean if the fetcher can handle the url. This fetcher will be
* used exclusively to fetch the feed and the items of the page
*/
- public function canHandle($url);
+ public function canHandle($url): bool;
}