X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=languages%2Fclasses%2FLanguageHsb.php;h=a862d42edc5d79b7f3a01364eb4105570a14a535;hb=4bbc818c46ead68eb4288b2cc41dfb50d2de352a;hp=1fc14044721024c36347b4a21d855a7e9346ad0f;hpb=5de26bec5939c28849245e721252243b4c250c57;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; } - }