From 1b01b241aeec9fd7688a8263cbb00a972e894652 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Fri, 4 Dec 2009 16:31:04 +0000 Subject: - Patch #648744 by Crell: specified more @return type definitions for auto-completion in IDEs. --- includes/archiver.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'includes/archiver.inc') diff --git a/includes/archiver.inc b/includes/archiver.inc index caf0a0ca0..6b726891e 100644 --- a/includes/archiver.inc +++ b/includes/archiver.inc @@ -27,7 +27,7 @@ interface ArchiverInterface { * @param $file_path * The full system path of the file or directory to add. Only local files * and directories are supported. - * @return + * @return ArchiverInterface * The called object. */ public function add($file_path); @@ -37,7 +37,7 @@ interface ArchiverInterface { * * @param $path * The file name relative to the root of the archive to remove. - * @return + * @return ArchiverInterface * The called object. */ public function remove($path); @@ -51,7 +51,7 @@ interface ArchiverInterface { * Optionally specify a list of files to be extracted. Files are * relative to the root of the archive. If not specified, all files * in the archive will be extracted - * @return + * @return ArchiverInterface * The called object. */ public function extract($path, Array $files = array()); -- cgit v1.2.3