Siebrand has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/94253


Change subject: Set visibility on class properties of ReplacementArray
......................................................................

Set visibility on class properties of ReplacementArray

Usages in:

Core:
* HtmlFormatter: No referenced properties.
* Language: No referenced properties.
* LanguageConverter subclasses: I think there are no referenced properties
  here, but not 100% certain.
* Tidy: No referenced properties.

Extensions:
* AbuseFilter: No referenced properties.
* LiquidThreads: No referenced properties.
* Transliterator: No referenced properties.
* WYSIWIG: No referenced properties.

Change-Id: I1b2e3360468cbfc803ab884f999437e9b8c3758d
---
M includes/utils/StringUtils.php
1 file changed, 2 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core 
refs/changes/53/94253/1

diff --git a/includes/utils/StringUtils.php b/includes/utils/StringUtils.php
index 68f6fd7..c506a76 100644
--- a/includes/utils/StringUtils.php
+++ b/includes/utils/StringUtils.php
@@ -409,8 +409,8 @@
  * Supports lazy initialisation of FSS resource
  */
 class ReplacementArray {
-       /*mostly private*/ var $data = false;
-       /*mostly private*/ var $fss = false;
+       private $data = false;
+       private $fss = false;
 
        /**
         * Create an object with the specified replacement array

-- 
To view, visit https://gerrit.wikimedia.org/r/94253
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I1b2e3360468cbfc803ab884f999437e9b8c3758d
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: master
Gerrit-Owner: Siebrand <[email protected]>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to