Remove wrong null type from @param of Content::fillParserOutput
authorumherirrender <umherirrender_de.wp@web.de>
Fri, 15 Aug 2014 16:28:30 +0000 (18:28 +0200)
committerumherirrender <umherirrender_de.wp@web.de>
Fri, 15 Aug 2014 16:29:04 +0000 (18:29 +0200)
Change-Id: Iae152214c52c611e8c118d2537e92f551b1c7ab8

includes/content/AbstractContent.php
tests/phpunit/includes/content/ContentHandlerTest.php

index e09be56..683c959 100644 (file)
@@ -503,7 +503,7 @@ abstract class AbstractContent implements Content {
         *
         * @param Title $title Context title for parsing
         * @param int|null $revId Revision ID (for {{REVISIONID}})
-        * @param ParserOptions|null $options Parser options
+        * @param ParserOptions $options Parser options
         * @param bool $generateHtml Whether or not to generate HTML
         * @param ParserOutput &$output The output object to fill (reference).
         *
index abedc6c..042ae93 100644 (file)
@@ -514,7 +514,7 @@ class DummyContentForTesting extends AbstractContent {
         *
         * @param Title $title Context title for parsing
         * @param int|null $revId Revision ID (for {{REVISIONID}})
-        * @param ParserOptions|null $options Parser options
+        * @param ParserOptions $options Parser options
         * @param bool $generateHtml Whether or not to generate HTML
         * @param ParserOutput &$output The output object to fill (reference).
         */