Merge "Rewrite pref cleanup script"
[lhc/web/wiklou.git] / includes / content / TextContent.php
index 45d00c5..71f65b3 100644 (file)
  */
 class TextContent extends AbstractContent {
 
+       /**
+        * @var string
+        */
+       protected $mText;
+
        /**
         * @param string $text
         * @param string $model_id
@@ -157,7 +162,7 @@ class TextContent extends AbstractContent {
         * changes.
         *
         * @since 1.28
-        * @param $text
+        * @param string $text
         * @return string
         */
        public static function normalizeLineEndings( $text ) {
@@ -231,7 +236,7 @@ class TextContent extends AbstractContent {
         *
         * @param Title $title Context title for parsing
         * @param int $revId Revision ID (for {{REVISIONID}})
-        * @param ParserOptions $options Parser options
+        * @param ParserOptions $options
         * @param bool $generateHtml Whether or not to generate HTML
         * @param ParserOutput &$output The output object to fill (reference).
         */