Merge "Add pluggable talk page poster and use it for mediawiki.feedback"
[lhc/web/wiklou.git] / languages / classes / LanguageDsb.php
index 0ae0524..2a21307 100644 (file)
  * @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;
        }
-
 }