Merge "Remove mw-ui-icon*:after"
[lhc/web/wiklou.git] / languages / classes / LanguageBs.php
index 072e857..de9c7dc 100644 (file)
  * @ingroup Language
  */
 class LanguageBs extends Language {
-
        /**
         * Convert from the nominative form of a noun to some other case
         * Invoked with {{GRAMMAR:case|word}}
         *
         * Cases: genitiv, dativ, akuzativ, vokativ, instrumental, lokativ
         *
-        * @param $word string
-        * @param $case string
+        * @param string $word
+        * @param string $case
         *
         * @return string
         */
@@ -53,6 +52,8 @@ class LanguageBs extends Language {
                        break;
                }
 
-               return $word; # this will return the original value for 'nominativ' (nominative) and all undefined case values
+               # this will return the original value for 'nominativ' (nominative)
+               # and all undefined case values.
+               return $word;
        }
 }