Merge "Use public instead of var in classes"

This commit is contained in:
jenkins-bot 2014-08-17 21:22:42 +00:00 committed by Gerrit Code Review
commit 793c08d1d7

View file

@ -7,9 +7,9 @@
* @ingroup Extensions * @ingroup Extensions
*/ */
class Vote { class Vote {
var $PageID = 0; public $PageID = 0;
var $Userid = 0; public $Userid = 0;
var $Username = null; public $Username = null;
/** /**
* Constructor * Constructor
@ -248,7 +248,7 @@ class Vote {
*/ */
class VoteStars extends Vote { class VoteStars extends Vote {
var $maxRating = 5; public $maxRating = 5;
/** /**
* Displays voting stars * Displays voting stars