MDL-28666 phpdoc improvements

This commit is contained in:
Dongsheng Cai
2012-05-21 11:57:54 +08:00
committed by Marina Glancy
parent 9dbdf31f8c
commit 04e3b007c2
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -145,7 +145,7 @@ class file_storage {
/**
* Create instance of file class from database record.
*
* @param stdClass $filerecord record from the files table
* @param stdClass $filerecord record from the files table left join files_reference table
* @return stored_file instance of file abstraction class
*/
public function get_file_instance(stdClass $filerecord) {
+1 -1
View File
@@ -43,7 +43,7 @@ require_once("$CFG->dirroot/repository/lib.php");
class stored_file {
/** @var file_storage file storage pool instance */
private $fs;
/** @var stdClass record from the files table */
/** @var stdClass record from the files table left join files_reference table */
private $file_record;
/** @var string location of content files */
private $filedir;