X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;ds=sidebyside;f=languages%2Fclasses%2FLanguageDsb.php;h=2a21307e2f39633335ac16de55c734c7651bcb7e;hb=93f78d904d22fc0e22d373d0aea253493ee640fc;hp=0ae052427799e6ca4722eef3ac25a31ea5a76053;hpb=adbadb9ee62284d70d9e7763379ab3b4eb6bde6f;p=lhc%2Fweb%2Fwiklou.git diff --git a/languages/classes/LanguageDsb.php b/languages/classes/LanguageDsb.php index 0ae0524277..2a21307e2f 100644 --- a/languages/classes/LanguageDsb.php +++ b/languages/classes/LanguageDsb.php @@ -28,13 +28,12 @@ * @ingroup Language */ class LanguageDsb 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 LanguageDsb 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; } - }