Swap @private for setting function definition to private
authorSam Reed <reedy@users.mediawiki.org>
Sun, 5 Dec 2010 16:15:28 +0000 (16:15 +0000)
committerSam Reed <reedy@users.mediawiki.org>
Sun, 5 Dec 2010 16:15:28 +0000 (16:15 +0000)
includes/CategoryPage.php

index 0ee9dba..365a255 100644 (file)
@@ -101,9 +101,8 @@ class CategoryViewer {
         * Format the category data list.
         *
         * @return string HTML output
-        * @private
         */
-       function getHTML() {
+       private function getHTML() {
                global $wgOut, $wgCategoryMagicGallery, $wgContLang;
                wfProfileIn( __METHOD__ );
 
@@ -418,9 +417,8 @@ class CategoryViewer {
         * @param $articles_start_char Array
         * @param $cutoff Int
         * @return String
-        * @private
         */
-       function formatList( $articles, $articles_start_char, $cutoff = 6 ) {
+       private function formatList( $articles, $articles_start_char, $cutoff = 6 ) {
                if ( count ( $articles ) > $cutoff ) {
                        return self::columnList( $articles, $articles_start_char );
                } elseif ( count( $articles ) > 0 ) {
@@ -443,9 +441,8 @@ class CategoryViewer {
         * @param $articles Array
         * @param $articles_start_char Array
         * @return String
-        * @private
         */
-       static function columnList( $articles, $articles_start_char ) {
+       private static function columnList( $articles, $articles_start_char ) {
                $columns = array_combine( $articles, $articles_start_char );
                # Split into three columns
                $columns = array_chunk( $columns, ceil( count( $columns ) / 3 ), true /* preserve keys */ );
@@ -495,9 +492,8 @@ class CategoryViewer {
         * @param $articles Array
         * @param $articles_start_char Array
         * @return String
-        * @private
         */
-       static function shortList( $articles, $articles_start_char ) {
+       private static function shortList( $articles, $articles_start_char ) {
                $r = '<h3>' . htmlspecialchars( $articles_start_char[0] ) . "</h3>\n";
                $r .= '<ul><li>' . $articles[0] . '</li>';
                for ( $index = 1; $index < count( $articles ); $index++ )