From ecd21a22c6f2745369d087bf603bdb865668a19c Mon Sep 17 00:00:00 2001 From: LogMANOriginal Date: Mon, 5 Sep 2016 20:33:10 +0200 Subject: [PATCH] [FeedExpander] Document max items feature --- FeedExpander.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FeedExpander.md b/FeedExpander.md index e4117ec..40a6ad5 100644 --- a/FeedExpander.md +++ b/FeedExpander.md @@ -11,7 +11,7 @@ To create a new Bridge extending `FeedExpander` you must implement all required Find a [template](#template) at the end of this file. -**Notice:** For a standard feed only `collectData` and [`parseItem`](#the-parseItem-function) need to be implemented. `collectData` should call `$this->collectExpandableDatas('your URI here');` to automatically load feed items and header data (will subsequently call `parseItem` for each item in the feed). +**Notice:** For a standard feed only `collectData` and [`parseItem`](#the-parseItem-function) need to be implemented. `collectData` should call `$this->collectExpandableDatas('your URI here');` to automatically load feed items and header data (will subsequently call `parseItem` for each item in the feed). You can limit the number of items to fetch by specifying an additional parameter for: `$this->collectExpandableDatas('your URI here', 10)` (limited to 10 items). ## The `parseItem` function