Index: trunk/extensions/FlaggedRevs/FlaggedArticle.php |
— | — | @@ -11,6 +11,8 @@ |
12 | 12 | |
13 | 13 | /** |
14 | 14 | * Get a FlaggedArticle for a given title |
| 15 | + * @param Title |
| 16 | + * @returns FlaggedArticle |
15 | 17 | */ |
16 | 18 | public static function getTitleInstance( Title $title ) { |
17 | 19 | // Check if there is already an instance on this title |
— | — | @@ -22,6 +24,8 @@ |
23 | 25 | |
24 | 26 | /** |
25 | 27 | * Get a FlaggedArticle for a given article |
| 28 | + * @param Article |
| 29 | + * @returns FlaggedArticle |
26 | 30 | */ |
27 | 31 | public static function getArticleInstance( Article $article ) { |
28 | 32 | return self::getTitleInstance( $article->mTitle ); |
— | — | @@ -77,7 +81,7 @@ |
78 | 82 | } |
79 | 83 | |
80 | 84 | /** |
81 | | - * Is this page in patrolable? |
| 85 | + * Is this page in patrollable? |
82 | 86 | * @param int $flags, FR_MASTER |
83 | 87 | * @return bool |
84 | 88 | */ |
— | — | @@ -111,7 +115,7 @@ |
112 | 116 | /** |
113 | 117 | * Get visiblity restrictions on page |
114 | 118 | * @param int $flags, FR_MASTER |
115 | | - * @returns Array (select,override) |
| 119 | + * @returns array (select,override) |
116 | 120 | */ |
117 | 121 | public function getVisibilitySettings( $flags = 0 ) { |
118 | 122 | # Cached results available? |