Declare visibility for class properties
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Mon, 11 Nov 2013 16:16:39 +0000 (17:16 +0100)
committerAntoine Musso <hashar@free.fr>
Thu, 14 Nov 2013 10:45:02 +0000 (11:45 +0100)
Found no usages outside of class.

Change-Id: I83856be9e7fade2a81902ab7b9166d573ac673d6

maintenance/language/writeMessagesArray.inc

index dc773a5..7c880b2 100644 (file)
  * @ingroup MaintenanceLanguage
  */
 class MessageWriter {
-       static $optionalComment =
+       protected static $optionalComment =
                'only translate this message to other languages if you have to change it';
-       static $ignoredComment = "do not translate or duplicate this message to other languages";
+       protected static $ignoredComment = "do not translate or duplicate this message to other languages";
 
-       static $messageStructure;
-       static $blockComments;
-       static $ignoredMessages;
-       static $optionalMessages;
+       protected static $messageStructure;
+       protected static $blockComments;
+       protected static $ignoredMessages;
+       protected static $optionalMessages;
 
        /**
         * Write a messages array as a PHP text and write it to the messages file.