From: Alexandre Emsenhuber Date: Wed, 17 Sep 2008 14:26:43 +0000 (+0000) Subject: fix some doxygen warnings X-Git-Tag: 1.31.0-rc.0~45245 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=commitdiff_plain;ds=sidebyside;h=a1ce0224ad1cd311f83562469c7a764bc61c5c3f;p=lhc%2Fweb%2Fwiklou.git fix some doxygen warnings --- diff --git a/includes/WatchedItem.php b/includes/WatchedItem.php index 857357cfee..2d2d34f147 100644 --- a/includes/WatchedItem.php +++ b/includes/WatchedItem.php @@ -12,8 +12,8 @@ class WatchedItem { /** * Create a WatchedItem object with the given user and title - * @param User $user The user to use for (un)watching - * @param Title $title The title we're going to (un)watch + * @param $user User: the user to use for (un)watching + * @param $title Title: the title we're going to (un)watch * @return WatchedItem object */ public static function fromUserTitle( $user, $title ) { diff --git a/includes/WebResponse.php b/includes/WebResponse.php index aeb2c64523..09d373850f 100644 --- a/includes/WebResponse.php +++ b/includes/WebResponse.php @@ -9,17 +9,17 @@ class WebResponse { /** * Output a HTTP header, wrapper for PHP's * header() - * @param string $string Header to output - * @param bool $replace Replace current similar header + * @param $string String: header to output + * @param $replace Bool: replace current similar header */ public function header($string, $replace=true) { header($string,$replace); } /** Set the browser cookie - * @param string $name Name of cookie - * @param string $value Value to give cookie - * @param int $expire Number of seconds til cookie expires + * @param $name String: name of cookie + * @param $value String: value to give cookie + * @param $expire Int: number of seconds til cookie expires */ public function setcookie( $name, $value, $expire = 0 ) { global $wgCookiePath, $wgCookiePrefix, $wgCookieDomain;