Index: trunk/phase3/includes/QueryPage.php |
— | — | @@ -597,10 +597,17 @@ |
598 | 598 | } |
599 | 599 | } |
600 | 600 | |
| 601 | + /** |
| 602 | + * @param $offset |
| 603 | + * @return string |
| 604 | + */ |
601 | 605 | function openList( $offset ) { |
602 | 606 | return "\n<ol start='" . ( $offset + 1 ) . "' class='special'>\n"; |
603 | 607 | } |
604 | 608 | |
| 609 | + /** |
| 610 | + * @return string |
| 611 | + */ |
605 | 612 | function closeList() { |
606 | 613 | return "</ol>\n"; |
607 | 614 | } |
Index: trunk/extensions/Translate/api/ApiQueryMessageCollection.php |
— | — | @@ -55,7 +55,6 @@ |
56 | 56 | |
57 | 57 | $messages->slice( $params['offset'], $params['limit'] + 1 ); |
58 | 58 | |
59 | | - |
60 | 59 | $messages->loadTranslations(); |
61 | 60 | |
62 | 61 | $result = $this->getResult(); |
— | — | @@ -89,6 +88,12 @@ |
90 | 89 | |
91 | 90 | } |
92 | 91 | |
| 92 | + /** |
| 93 | + * @param $result ApiResult |
| 94 | + * @param $props array |
| 95 | + * @param $message ThinMessage |
| 96 | + * @return array |
| 97 | + */ |
93 | 98 | public function extractMessageData( $result, $props, $message ) { |
94 | 99 | $data['key'] = $message->key(); |
95 | 100 | if ( isset( $props['definition'] ) ) { |
— | — | @@ -104,6 +109,9 @@ |
105 | 110 | return $data; |
106 | 111 | } |
107 | 112 | |
| 113 | + /** |
| 114 | + * @return array |
| 115 | + */ |
108 | 116 | public function getFilters() { |
109 | 117 | $basic = MessageCollection::getAvailableFilters(); |
110 | 118 | $full = array(); |
Index: trunk/extensions/CheckUser/CheckUser_body.php |
— | — | @@ -127,6 +127,9 @@ |
128 | 128 | } |
129 | 129 | } |
130 | 130 | |
| 131 | + /** |
| 132 | + * @return Title |
| 133 | + */ |
131 | 134 | public function getLogSubpageTitle() { |
132 | 135 | if ( !isset( $this->logSubpageTitle ) ) { |
133 | 136 | $this->logSubpageTitle = $this->getTitle( wfMsgForContent( 'checkuser-log-subpage' ) ); |
Index: trunk/extensions/LilyPond/LilyPond.class.php |
— | — | @@ -296,4 +296,4 @@ |
297 | 297 | imagecopy( $dstImage, $srcImage, $borderWidth, $borderHeight, 0, 0, $width, $height ); |
298 | 298 | imagepng( $dstImage, $dest ); |
299 | 299 | } |
300 | | - } |
\ No newline at end of file |
| 300 | +} |
\ No newline at end of file |