Index: trunk/phase3/includes/LinksUpdate.php |
— | — | @@ -26,9 +26,9 @@ |
27 | 27 | /** |
28 | 28 | * Constructor |
29 | 29 | * |
30 | | - * @param Title $title Title of the page we're updating |
31 | | - * @param ParserOutput $parserOutput Output from a full parse of this page |
32 | | - * @param bool $recursive Queue jobs for recursive updates? |
| 30 | + * @param $title Title of the page we're updating |
| 31 | + * @param $parserOutput ParserOutput: output from a full parse of this page |
| 32 | + * @param $recursive Boolean: queue jobs for recursive updates? |
33 | 33 | */ |
34 | 34 | function LinksUpdate( $title, $parserOutput, $recursive = true ) { |
35 | 35 | global $wgAntiLockFlags; |
— | — | @@ -226,8 +226,8 @@ |
227 | 227 | /** |
228 | 228 | * Invalidate the cache of a list of pages from a single namespace |
229 | 229 | * |
230 | | - * @param integer $namespace |
231 | | - * @param array $dbkeys |
| 230 | + * @param $namespace Integer |
| 231 | + * @param $dbkeys Array |
232 | 232 | */ |
233 | 233 | function invalidatePages( $namespace, $dbkeys ) { |
234 | 234 | if ( !count( $dbkeys ) ) { |
— | — | @@ -421,7 +421,8 @@ |
422 | 422 | |
423 | 423 | /** |
424 | 424 | * Get an array of category insertions |
425 | | - * @param array $existing Array mapping existing category names to sort keys. If both |
| 425 | + * |
| 426 | + * @param $existing Array mapping existing category names to sort keys. If both |
426 | 427 | * match a link in $this, the link will be omitted from the output |
427 | 428 | * @private |
428 | 429 | */ |
— | — | @@ -444,7 +445,8 @@ |
445 | 446 | |
446 | 447 | /** |
447 | 448 | * Get an array of interlanguage link insertions |
448 | | - * @param array $existing Array mapping existing language codes to titles |
| 449 | + * |
| 450 | + * @param $existing Array mapping existing language codes to titles |
449 | 451 | * @private |
450 | 452 | */ |
451 | 453 | function getInterlangInsertions( $existing = array() ) { |