X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/operations/recherche.php?a=blobdiff_plain;f=languages%2Fclasses%2FLanguageHsb.php;h=a862d42edc5d79b7f3a01364eb4105570a14a535;hb=74426f3cf796b149f1ae445e41815bbe148640b2;hp=1fc14044721024c36347b4a21d855a7e9346ad0f;hpb=c687c4a9ac95e45e786635a7ada0f9f9348c6534;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; } - }