summaryrefslogtreecommitdiff
path: root/includes/archiver.inc
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-02-01 07:17:59 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-02-01 07:17:59 +0000
commit10fd10cf455bf21f7799c6c9b245808f5262733a (patch)
tree98eb0c73bb9f11625e18ec04cccdcf6fceed5da6 /includes/archiver.inc
parentb9a3a7bfc1495fea6a00a418ca0e50fa9fc939f2 (diff)
downloadbrdo-10fd10cf455bf21f7799c6c9b245808f5262733a.tar.gz
brdo-10fd10cf455bf21f7799c6c9b245808f5262733a.tar.bz2
#700686 by dww: Make ArchiverInterface::listContents() return a simple list of files, rather than a keyed array, which is inconsistent between extension handlers.
Diffstat (limited to 'includes/archiver.inc')
-rw-r--r--includes/archiver.inc3
1 files changed, 1 insertions, 2 deletions
diff --git a/includes/archiver.inc b/includes/archiver.inc
index 37d221ef2..5e6ef323f 100644
--- a/includes/archiver.inc
+++ b/includes/archiver.inc
@@ -60,8 +60,7 @@ interface ArchiverInterface {
* List all files in the archive.
*
* @return
- * An array of file names relative to the root of the archive, or
- * an iterable object that resolves to such a list.
+ * An array of file names relative to the root of the archive.
*/
public function listContents();
}