From b3c1389e69ead800f1b9354ea5e483f7e5d5cfcf Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Thu, 14 Nov 2013 15:19:13 +0100 Subject: [PATCH] Declare visibility on class property in ApiQueryInfo Only used in this class, so make protected. Change-Id: I20984d14524073b6b1b9f4b31c2107722318503f --- includes/api/ApiQueryInfo.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/api/ApiQueryInfo.php b/includes/api/ApiQueryInfo.php index 3a1c21a1a9..43b8c0ceac 100644 --- a/includes/api/ApiQueryInfo.php +++ b/includes/api/ApiQueryInfo.php @@ -109,7 +109,7 @@ class ApiQueryInfo extends ApiQueryBase { return $this->tokenFunctions; } - static $cachedTokens = array(); + static protected $cachedTokens = array(); public static function resetTokenCache() { ApiQueryInfo::$cachedTokens = array(); -- 2.20.1