diff options
Diffstat (limited to 'includes/parser/ParserCache.php')
-rw-r--r-- | includes/parser/ParserCache.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/parser/ParserCache.php b/includes/parser/ParserCache.php index 8b0432904e87..64a1aa0f8ed1 100644 --- a/includes/parser/ParserCache.php +++ b/includes/parser/ParserCache.php @@ -88,7 +88,7 @@ class ParserCache { * Retrieve the ParserOutput from ParserCache, even if it's outdated. * @param $article Article * @param $popts ParserOptions - * @return ParserOutput|false + * @return ParserOutput|bool */ public function getDirty( $article, $popts ) { $value = $this->get( $article, $popts, true ); @@ -143,7 +143,7 @@ class ParserCache { * @param $popts ParserOptions * @param $useOutdated * - * @return ParserOutput|false + * @return ParserOutput|bool */ public function get( $article, $popts, $useOutdated = false ) { global $wgCacheEpoch; |