MDL-33513 repositories - fix misleading phpdocs

This commit is contained in:
Dan Poltawski 2012-06-14 10:52:59 +08:00
parent 24b96f0170
commit b2cf2b807f
5 changed files with 8 additions and 9 deletions

View File

@ -192,8 +192,7 @@ class boxclient {
* Get box.net file info
*
* @param string $fileid
* @param array $params
* @return array|null
* @return string|null
*/
function get_file_info($fileid) {
$this->_clearErrors();
@ -205,7 +204,7 @@ class boxclient {
$http = new curl(array('debug'=>$this->debug, 'cache'=>true, 'module_cache'=>'repository'));
$xml = $http->get($this->_box_api_url, $params);
$o = simplexml_load_string(trim($xml));
if($o->status == 's_get_file_info') {
if ($o->status == 's_get_file_info') {
return $o->info;
} else {
return null;

View File

@ -318,7 +318,7 @@ class repository_flickr extends repository {
/**
* Return the source information
*
* @param stdClass $url
* @param string $photoid
* @return string|null
*/
public function get_file_source_info($photoid) {

View File

@ -529,7 +529,7 @@ class repository_flickr_public extends repository {
/**
* Return the source information
*
* @param stdClass $url
* @param string $photoid photo id
* @return string|null
*/
public function get_file_source_info($photoid) {

View File

@ -2211,8 +2211,8 @@ abstract class repository {
* File manager needs to know the original file information before copying
* to draft area, so we append these information in mdl_files.source field
*
* @param string $sourcefield
* @param string
* @param string $source
* @return string serialised source field
*/
public static function build_source_field($source) {
$sourcefield = new stdClass;

View File

@ -122,8 +122,8 @@ class repository_s3 extends repository {
/**
* Return the source information
*
* @param stdClass $url
* @return string|null
* @param stdClass $filepath
* @return string
*/
public function get_file_source_info($filepath) {
return 'Amazon S3:' . $filepath;