From 5d7ffb0767b5d81737eb4374353acdd254d4ece5 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Thu, 20 Aug 2015 17:41:27 -0700 Subject: [PATCH] Fixed ParserCache IDE warnings Change-Id: I1785f4207379b873e4ce7312c0aae7a4300e7a06 --- includes/parser/ParserCache.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/parser/ParserCache.php b/includes/parser/ParserCache.php index 44b0bc9e16..47fcd30a64 100644 --- a/includes/parser/ParserCache.php +++ b/includes/parser/ParserCache.php @@ -26,7 +26,7 @@ * @todo document */ class ParserCache { - /** @var MWMemcached */ + /** @var BagOStuff */ private $mMemc; /** * Get an instance of this object @@ -46,7 +46,7 @@ class ParserCache { * Setup a cache pathway with a given back-end storage mechanism. * May be a memcached client or a BagOStuff derivative. * - * @param MWMemcached $memCached + * @param BagOStuff $memCached * @throws MWException */ protected function __construct( $memCached ) { -- 2.20.1