summaryrefslogtreecommitdiff
path: root/includes/archiver.inc
diff options
context:
space:
mode:
Diffstat (limited to 'includes/archiver.inc')
-rw-r--r--includes/archiver.inc6
1 files changed, 3 insertions, 3 deletions
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());