]> git.mxchange.org Git - friendica.git/commitdiff
Add static keyword for Core\L10n properties
authorHypolite Petovan <hypolite@mrpetovan.com>
Mon, 22 Oct 2018 12:45:41 +0000 (08:45 -0400)
committerBenjamin Lorteau <benjamin.lorteau@cbsinteractive.com>
Mon, 22 Oct 2018 19:58:42 +0000 (15:58 -0400)
src/Core/L10n.php

index 05f710cd76c2f6cf603199ac71f50b73b3b1e2ef..45b70e06258663bb1e7abb8ee784c37863d4ee95 100644 (file)
@@ -23,26 +23,26 @@ class L10n extends BaseObject
         * - Two-letter ISO 639-1 code + dash + Two-letter ISO 3166-1 alpha-2 country code.
         * @var string
         */
-       private $lang = '';
+       private static $lang = '';
        /**
         * A language code saved for later after pushLang() has been called.
         *
         * @var string
         */
-       private $langSave = '';
+       private static $langSave = '';
 
        /**
         * An array of translation strings whose key is the neutral english message.
         *
         * @var array
         */
-       private $strings = [];
+       private static $strings = [];
        /**
         * An array of translation strings saved for later after pushLang() has been called.
         *
         * @var array
         */
-       private $stringsSave = [];
+       private static $stringsSave = [];
 
        /**
         * Detects the language and sets the translation table