Merge "Missing space between variable name and docstring"
authorjenkins-bot <jenkins-bot@gerrit.wikimedia.org>
Fri, 10 May 2019 08:51:37 +0000 (08:51 +0000)
committerGerrit Code Review <gerrit@wikimedia.org>
Fri, 10 May 2019 08:51:37 +0000 (08:51 +0000)
1  2 
includes/parser/ParserOutput.php

@@@ -42,7 -42,7 +42,7 @@@ class ParserOutput extends CacheTime 
        public $mLanguageLinks;
  
        /**
-        * @var array $mCategoriesMap of category names to sort keys
+        * @var array $mCategories Map of category names to sort keys
         */
        public $mCategories;
  
                return $this->mSections;
        }
  
 -      /**
 -       * @deprecated since 1.31 Use getText() options.
 -       */
 -      public function getEditSectionTokens() {
 -              wfDeprecated( __METHOD__, '1.31' );
 -              return true;
 -      }
 -
        public function &getLinks() {
                return $this->mLinks;
        }
                return $this->mLimitReportJSData;
        }
  
 -      /**
 -       * @deprecated since 1.31 Use getText() options.
 -       */
 -      public function getTOCEnabled() {
 -              wfDeprecated( __METHOD__, '1.31' );
 -              return true;
 -      }
 -
        public function getEnableOOUI() {
                return $this->mEnableOOUI;
        }
                return wfSetVar( $this->mSections, $toc );
        }
  
 -      /**
 -       * @deprecated since 1.31 Use getText() options.
 -       */
 -      public function setEditSectionTokens( $t ) {
 -              wfDeprecated( __METHOD__, '1.31' );
 -              return true;
 -      }
 -
        public function setIndexPolicy( $policy ) {
                return wfSetVar( $this->mIndexPolicy, $policy );
        }
                return wfSetVar( $this->mTimestamp, $timestamp );
        }
  
 -      /**
 -       * @deprecated since 1.31 Use getText() options.
 -       */
 -      public function setTOCEnabled( $flag ) {
 -              wfDeprecated( __METHOD__, '1.31' );
 -              return true;
 -      }
 -
        public function addCategory( $c, $sort ) {
                $this->mCategories[$c] = $sort;
        }