Index: trunk/phase3/includes/WatchedItem.php |
— | — | @@ -12,8 +12,8 @@ |
13 | 13 | |
14 | 14 | /** |
15 | 15 | * Create a WatchedItem object with the given user and title |
16 | | - * @param User $user The user to use for (un)watching |
17 | | - * @param Title $title The title we're going to (un)watch |
| 16 | + * @param $user User: the user to use for (un)watching |
| 17 | + * @param $title Title: the title we're going to (un)watch |
18 | 18 | * @return WatchedItem object |
19 | 19 | */ |
20 | 20 | public static function fromUserTitle( $user, $title ) { |
Index: trunk/phase3/includes/WebResponse.php |
— | — | @@ -9,17 +9,17 @@ |
10 | 10 | /** |
11 | 11 | * Output a HTTP header, wrapper for PHP's |
12 | 12 | * header() |
13 | | - * @param string $string Header to output |
14 | | - * @param bool $replace Replace current similar header |
| 13 | + * @param $string String: header to output |
| 14 | + * @param $replace Bool: replace current similar header |
15 | 15 | */ |
16 | 16 | public function header($string, $replace=true) { |
17 | 17 | header($string,$replace); |
18 | 18 | } |
19 | 19 | |
20 | 20 | /** Set the browser cookie |
21 | | - * @param string $name Name of cookie |
22 | | - * @param string $value Value to give cookie |
23 | | - * @param int $expire Number of seconds til cookie expires |
| 21 | + * @param $name String: name of cookie |
| 22 | + * @param $value String: value to give cookie |
| 23 | + * @param $expire Int: number of seconds til cookie expires |
24 | 24 | */ |
25 | 25 | public function setcookie( $name, $value, $expire = 0 ) { |
26 | 26 | global $wgCookiePath, $wgCookiePrefix, $wgCookieDomain; |