inline docs improvements

This commit is contained in:
skodak 2008-08-12 11:00:13 +00:00
parent 552adc27d7
commit 593bb2ebf5
2 changed files with 6 additions and 6 deletions

View file

@ -7,7 +7,7 @@ abstract class file_packer {
/** /**
* archive files and store the result in file storage * archive files and store the result in file storage
* @param array $archivepath=>$pathanme or stored file instance * @param array $files array with zip paths as keys (archivepath=>ospathname or archivepath=>stored_file)
* @param int $contextid * @param int $contextid
* @param string $filearea * @param string $filearea
* @param int $itemid * @param int $itemid
@ -19,8 +19,8 @@ abstract class file_packer {
/** /**
* Archive files and store the result in os file * Archive files and store the result in os file
* @param array $archivepath=>$pathanme or stored file instance * @param array $files array with zip paths as keys (archivepath=>ospathname or archivepath=>stored_file)
* @param string $archivefile * @param string $archivefile path to target zip file
* @return bool success * @return bool success
*/ */
public abstract function archive_to_pathname($files, $archivefile); public abstract function archive_to_pathname($files, $archivefile);

View file

@ -10,7 +10,7 @@ class zip_packer extends file_packer {
/** /**
* Zip files and store the result in file storage * Zip files and store the result in file storage
* @param array $archivepath=>$pathanme or stored file instance * @param array $files array with zip paths as keys (archivepath=>ospathname or archivepath=>stored_file)
* @param int $contextid * @param int $contextid
* @param string $filearea * @param string $filearea
* @param int $itemid * @param int $itemid
@ -49,8 +49,8 @@ class zip_packer extends file_packer {
/** /**
* Zip files and store the result in os file * Zip files and store the result in os file
* @param array $archivepath=>$pathanme or stored file instance * @param array $files array with zip paths as keys (archivepath=>ospathname or archivepath=>stored_file)
* @param string $archivefile * @param string $archivefile path to target zip file
* @return bool success * @return bool success
*/ */
public function archive_to_pathname($files, $archivefile) { public function archive_to_pathname($files, $archivefile) {