X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=languages%2Fclasses%2FLanguageHsb.php;h=a862d42edc5d79b7f3a01364eb4105570a14a535;hb=a33ada3e9d2a6f51105079a4138ea53eecddbdf2;hp=1fc14044721024c36347b4a21d855a7e9346ad0f;hpb=0e24ba0d9b1ba699f722b23bc3ef941b85df66cd;p=lhc%2Fweb%2Fwiklou.git diff --git a/languages/classes/LanguageHsb.php b/languages/classes/LanguageHsb.php index 1fc1404472..a862d42edc 100644 --- a/languages/classes/LanguageHsb.php +++ b/languages/classes/LanguageHsb.php @@ -27,13 +27,12 @@ * @ingroup Language */ class LanguageHsb extends Language { - /** * Convert from the nominative form of a noun to some other case * Invoked with {{grammar:case|word}} * - * @param $word string - * @param $case string + * @param string $word + * @param string $case * @return string */ function convertGrammar( $word, $case ) { @@ -51,7 +50,8 @@ class LanguageHsb extends Language { break; } - return $word; # this will return the original value for 'nominatiw' (nominativ) and all undefined case values + # this will return the original value for 'nominatiw' (nominativ) and + # all undefined case values. + return $word; } - }