summaryrefslogtreecommitdiff
path: root/includes/archiver.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-12-04 16:31:04 +0000
committerDries Buytaert <dries@buytaert.net>2009-12-04 16:31:04 +0000
commit1b01b241aeec9fd7688a8263cbb00a972e894652 (patch)
tree8cc6ece5b812a42d2d939aea0f887b4302d8a9ca /includes/archiver.inc
parent99128df8d030061a94e093a0a6da91e11f8453cd (diff)
downloadbrdo-1b01b241aeec9fd7688a8263cbb00a972e894652.tar.gz
brdo-1b01b241aeec9fd7688a8263cbb00a972e894652.tar.bz2
- Patch #648744 by Crell: specified more @return type definitions for auto-completion in IDEs.
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());