diff --git a/includes/FeedsImporter.inc b/includes/FeedsImporter.inc index f6d782cbca504c7ffd2b8d7507fbed373058cf00..652eaffd8b827bae8950da247e9b953cd83f9396 100644 --- a/includes/FeedsImporter.inc +++ b/includes/FeedsImporter.inc @@ -68,8 +68,8 @@ class FeedsImporter extends FeedsConfigurable { * given, internal processor settings will be used. * * @return - * FEEDS_BATCH_COMPLETE if complete, a float between 0 and 1 indicating - * progress otherwise. + * FEEDS_BATCH_COMPLETE if the expiry process finished. A decimal between + * 0.0 and 0.9 periodic if expiry is still in progress. * * @throws * Throws Exception if an error occurs when expiring items. diff --git a/includes/FeedsSource.inc b/includes/FeedsSource.inc index 3c6ab5574a0da21d004120a171365a0da1b0c6b3..fe0760e1f40edf2516e72cc6fd2147dc0b19f6e2 100644 --- a/includes/FeedsSource.inc +++ b/includes/FeedsSource.inc @@ -116,6 +116,10 @@ class FeedsSource extends FeedsConfigurable { * Lock a source before importing by using FeedsSource::lock(), after * importing, release with FeedsSource::release(). * + * @return + * FEEDS_BATCH_COMPLETE if the import process finished. A decimal between + * 0.0 and 0.9 periodic if import is still in progress. + * * @throws * Throws Exception if an error occurs when importing. */ @@ -143,6 +147,10 @@ class FeedsSource extends FeedsConfigurable { /** * Remove all items from a feed. * + * @return + * FEEDS_BATCH_COMPLETE if the clearing process finished. A decimal between + * 0.0 and 0.9 periodic if clearing is still in progress. + * * @throws * Throws Exception if an error occurs when clearing. */