From 995e6679eef469996506608ff618ddfa6c5a2887 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 11 Nov 2013 17:16:39 +0100 Subject: [PATCH] Declare visibility for class properties Found no usages outside of class. Change-Id: I83856be9e7fade2a81902ab7b9166d573ac673d6 --- maintenance/language/writeMessagesArray.inc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/maintenance/language/writeMessagesArray.inc b/maintenance/language/writeMessagesArray.inc index dc773a5311..7c880b2f9f 100644 --- a/maintenance/language/writeMessagesArray.inc +++ b/maintenance/language/writeMessagesArray.inc @@ -25,14 +25,14 @@ * @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. -- 2.20.1