From: Alexandre Emsenhuber Date: Sat, 4 Sep 2010 15:08:02 +0000 (+0000) Subject: Fixed some doxygen warnings X-Git-Tag: 1.31.0-rc.0~35151 X-Git-Url: http://git.cyclocoop.org/%7B%7B%20url_for%28%27admin_vote_add%27%29%20%7D%7D?a=commitdiff_plain;h=c9790ba8e8e570bf8e4aa31b79c449c1427232fd;p=lhc%2Fweb%2Fwiklou.git Fixed some doxygen warnings --- diff --git a/includes/job/UploadFromUrlJob.php b/includes/job/UploadFromUrlJob.php index 6496b35252..31c7dc79a3 100644 --- a/includes/job/UploadFromUrlJob.php +++ b/includes/job/UploadFromUrlJob.php @@ -126,9 +126,9 @@ class UploadFromUrlJob extends Job { * Store a result in the session data * THIS IS BROKEN. $_SESSION does not exist when using runJobs.php * - * @param $result string The result (Success|Warning|Failure) - * @param $dataKey string The key of the extra data - * @param $dataKey mixed The extra data itself + * @param $result String: the result (Success|Warning|Failure) + * @param $dataKey String: the key of the extra data + * @param $dataValue Mixed: the extra data itself */ protected function storeResultInSession( $result, $dataKey, $dataValue ) { $session &= $_SESSION[UploadBase::getSessionKeyname()][$this->params['sessionKey']]; diff --git a/includes/upload/UploadBase.php b/includes/upload/UploadBase.php index 75177fbe3b..3ed61bbd69 100644 --- a/includes/upload/UploadBase.php +++ b/includes/upload/UploadBase.php @@ -298,7 +298,7 @@ abstract class UploadBase { /** * Verify the mime type - * @param $magic MagicMime object + * * @param $mime string representing the mime * @return mixed true if the file is verified, an array otherwise */