Index: trunk/extensions/Translate/MessageGroups.php |
— | — | @@ -743,6 +743,9 @@ |
744 | 744 | return $wgLanguageCode; |
745 | 745 | } |
746 | 746 | |
| 747 | + /** |
| 748 | + * @return Title |
| 749 | + */ |
747 | 750 | public function getTitle() { |
748 | 751 | if ( is_string( $this->title ) ) { |
749 | 752 | $this->title = Title::newFromText( $this->title ); |
Index: trunk/extensions/Translate/utils/StringMatcher.php |
— | — | @@ -61,6 +61,7 @@ |
62 | 62 | |
63 | 63 | /** |
64 | 64 | * Alias for making NO-OP string mangler. |
| 65 | + * @return StringMatcher |
65 | 66 | */ |
66 | 67 | public static function EmptyMatcher() { |
67 | 68 | return new StringMatcher; |
Index: trunk/extensions/Translate/api/ApiQueryMessageCollection.php |
— | — | @@ -31,6 +31,9 @@ |
32 | 32 | $this->run( $resultPageSet ); |
33 | 33 | } |
34 | 34 | |
| 35 | + /** |
| 36 | + * @param $resultPageSet ApiPageSet |
| 37 | + */ |
35 | 38 | private function run( $resultPageSet = null ) { |
36 | 39 | $params = $this->extractRequestParams(); |
37 | 40 | |