Addshore has uploaded a new change for review.

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

Change subject: Use public instead of var in classes
......................................................................

Use public instead of var in classes

Change-Id: I2ff9f31854d98ce54a92c0c9912f1bd7ae755f35
---
M RenameuserSQL.php
1 file changed, 5 insertions(+), 5 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Renameuser 
refs/changes/65/154665/1

diff --git a/RenameuserSQL.php b/RenameuserSQL.php
index 153cac8..77e4d8a 100644
--- a/RenameuserSQL.php
+++ b/RenameuserSQL.php
@@ -10,7 +10,7 @@
          * @var string
          * @access private
          */
-       var $old;
+       public $old;
 
        /**
          * The new username
@@ -18,7 +18,7 @@
          * @var string
          * @access private
          */
-       var $new;
+       public $new;
 
        /**
          * The user ID
@@ -26,7 +26,7 @@
          * @var integer
          * @access private
          */
-       var $uid;
+       public $uid;
 
        /**
          * The the tables => fields to be updated
@@ -34,7 +34,7 @@
          * @var array
          * @access private
          */
-       var $tables;
+       public $tables;
 
        /**
          * Flag that can be set to false, in case another process has already 
started
@@ -43,7 +43,7 @@
          * @var bool
          * @access private
          */
-       var $checkIfUserExists;
+       public $checkIfUserExists;
 
        /**
         * Constructor

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I2ff9f31854d98ce54a92c0c9912f1bd7ae755f35
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Renameuser
Gerrit-Branch: master
Gerrit-Owner: Addshore <[email protected]>

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

Reply via email to