X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=languages%2Fclasses%2FLanguageKaa.php;h=eab08fe3623a19fa55e9480635aa8b334125b1f2;hb=2828ef9f34d9f47ef896523b132661c280768ea9;hp=0318fb1fc611025283c637c3a55742b7c9c2f0c7;hpb=64797b281d1d8f3221aa61a00a36922b961f3922;p=lhc%2Fweb%2Fwiklou.git diff --git a/languages/classes/LanguageKaa.php b/languages/classes/LanguageKaa.php index 0318fb1fc6..eab08fe362 100644 --- a/languages/classes/LanguageKaa.php +++ b/languages/classes/LanguageKaa.php @@ -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,7 +50,7 @@ class LanguageKaa extends Language { /** * It fixes issue with ucfirst for transforming 'i' to 'İ' * - * @param $string string + * @param string $string * * @return string */ @@ -65,7 +65,7 @@ class LanguageKaa extends Language { /** * It fixes issue with lcfirst for transforming 'I' to 'ı' * - * @param $string string + * @param string $string * * @return mixed|string */ @@ -80,7 +80,7 @@ class LanguageKaa extends Language { /** * Avoid grouping whole numbers between 0 to 9999 * - * @param $_ string + * @param string $_ * * @return string */