jenkins-bot has submitted this change and it was merged.

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


Use public instead of var in classes

Change-Id: I689c798003e9ac120e7b157fd9265a9cac23b0d8
---
M BiblioPlus.body.php
M BiblioXml.php
2 files changed, 3 insertions(+), 3 deletions(-)

Approvals:
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/BiblioPlus.body.php b/BiblioPlus.body.php
index 8068f59..e5041db 100644
--- a/BiblioPlus.body.php
+++ b/BiblioPlus.body.php
@@ -10,7 +10,7 @@
        /**
        * @var array $citations: Management of the citation indices (order in 
which they appear in the text).
        */
-    var $citations = array();
+    public $citations = array();
 
     /**
        * Returns an array element with index $key, or null if it does not 
exist.
diff --git a/BiblioXml.php b/BiblioXml.php
index 7504f72..9057909 100644
--- a/BiblioXml.php
+++ b/BiblioXml.php
@@ -7,12 +7,12 @@
        /*
         * @var Xml Parser $parser: The xml parser to parse the input text.
         */
-       var $parser;
+       public $parser;
 
        /*
         * @var array $data: Holds the data parsed from the xml document.
         */
-       var $data;
+       public $data;
 
        /*
         * The xml element handler for xml open tags.

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I689c798003e9ac120e7b157fd9265a9cac23b0d8
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/BiblioPlus
Gerrit-Branch: master
Gerrit-Owner: Addshore <[email protected]>
Gerrit-Reviewer: Legoktm <[email protected]>
Gerrit-Reviewer: jenkins-bot <>

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

Reply via email to