Use short assignment operator in PHP
[lhc/web/wiklou.git] / languages / classes / LanguageKaa.php
index 0318fb1..57f9529 100644 (file)
@@ -33,15 +33,15 @@ class LanguageKaa extends Language {
        /**
         * Cases: genitive, dative, accusative, locative, ablative, comitative + possessive forms
         *
-        * @param $word string
-        * @param $case string
+        * @param string $word
+        * @param string $case
         *
         * @return string
         */
        function convertGrammar( $word, $case ) {
                global $wgGrammarForms;
                if ( isset( $wgGrammarForms['kaa'][$case][$word] ) ) {
-                    return $wgGrammarForms['kaa'][$case][$word];
+                       return $wgGrammarForms['kaa'][$case][$word];
                }
                /* Full code of function convertGrammar() is in development. Updates coming soon. */
                return $word;
@@ -50,46 +50,29 @@ class LanguageKaa extends Language {
        /**
         * It fixes issue with ucfirst for transforming 'i' to 'İ'
         *
-        * @param $string string
+        * @param string $string
         *
         * @return string
         */
-       function ucfirst( $string ) {
+       public function ucfirst( $string ) {
                if ( substr( $string, 0, 1 ) === 'i' ) {
                        return 'İ' . substr( $string, 1 );
-               } else {
-                       return parent::ucfirst( $string );
                }
+               return parent::ucfirst( $string );
        }
 
        /**
         * It fixes issue with lcfirst for transforming 'I' to 'ı'
         *
-        * @param $string string
+        * @param string $string
         *
         * @return mixed|string
         */
        function lcfirst( $string ) {
                if ( substr( $string, 0, 1 ) === 'I' ) {
                        return 'ı' . substr( $string, 1 );
-               } else {
-                       return parent::lcfirst( $string );
-               }
-       }
-
-       /**
-        * Avoid grouping whole numbers between 0 to 9999
-        *
-        * @param $_ string
-        *
-        * @return string
-        */
-       function commafy( $_ ) {
-               if ( !preg_match( '/^\d{1,4}$/', $_ ) ) {
-                       return strrev( (string)preg_replace( '/(\d{3})(?=\d)(?!\d*\.)/', '$1,', strrev( $_ ) ) );
-               } else {
-                       return $_;
                }
+               return parent::lcfirst( $string );
        }
 
 }