X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=languages%2Fclasses%2FLanguageKaa.php;h=eab08fe3623a19fa55e9480635aa8b334125b1f2;hb=895987c4fc32b717d544f5ef0c238affe23d8796;hp=a397bc0f10a6845802d999f7124eb26f63a2d1cc;hpb=6befd65ccffe4e77fff1ca14fb6ce7ac3149a24e;p=lhc%2Fweb%2Fwiklou.git diff --git a/languages/classes/LanguageKaa.php b/languages/classes/LanguageKaa.php index a397bc0f10..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,11 +50,11 @@ class LanguageKaa extends Language { /** * It fixes issue with ucfirst for transforming 'i' to 'İ' * - * @param $string string + * @param string $string * * @return string */ - function ucfirst ( $string ) { + function ucfirst( $string ) { if ( substr( $string, 0, 1 ) === 'i' ) { return 'İ' . substr( $string, 1 ); } else { @@ -65,11 +65,11 @@ class LanguageKaa extends Language { /** * It fixes issue with lcfirst for transforming 'I' to 'ı' * - * @param $string string + * @param string $string * * @return mixed|string */ - function lcfirst ( $string ) { + function lcfirst( $string ) { if ( substr( $string, 0, 1 ) === 'I' ) { return 'ı' . substr( $string, 1 ); } else { @@ -80,7 +80,7 @@ class LanguageKaa extends Language { /** * Avoid grouping whole numbers between 0 to 9999 * - * @param $_ string + * @param string $_ * * @return string */