X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=languages%2Fclasses%2FLanguageHsb.php;h=a862d42edc5d79b7f3a01364eb4105570a14a535;hb=a7c30848cfe972c3e2e16b8a962cbfdcd128dc73;hp=1fc14044721024c36347b4a21d855a7e9346ad0f;hpb=12d9ce2a2f9ddec1a2f5ead8ebff0b2282bdac31;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; } - }