Add autocomplete for WhatLinksHere subpages
[lhc/web/wiklou.git] / tests / phpunit / languages / LanguageSrTest.php
index 8d35f36..bfb199f 100644 (file)
@@ -180,9 +180,9 @@ class LanguageSrTest extends LanguageClassesTestCase {
        ##### HELPERS #####################################################
        /**
         *Wrapper to verify text stay the same after applying conversion
-        * @param $text string Text to convert
-        * @param $variant string Language variant 'sr-ec' or 'sr-el'
-        * @param $msg string Optional message
+        * @param string $text Text to convert
+        * @param string $variant Language variant 'sr-ec' or 'sr-el'
+        * @param string $msg Optional message
         */
        protected function assertUnConverted( $text, $variant, $msg = '' ) {
                $this->assertEquals(
@@ -194,9 +194,9 @@ class LanguageSrTest extends LanguageClassesTestCase {
 
        /**
         * Wrapper to verify a text is different once converted to a variant.
-        * @param $text string Text to convert
-        * @param $variant string Language variant 'sr-ec' or 'sr-el'
-        * @param $msg string Optional message
+        * @param string $text Text to convert
+        * @param string $variant Language variant 'sr-ec' or 'sr-el'
+        * @param string $msg Optional message
         */
        protected function assertConverted( $text, $variant, $msg = '' ) {
                $this->assertNotEquals(
@@ -210,6 +210,8 @@ class LanguageSrTest extends LanguageClassesTestCase {
         * Verifiy the given Cyrillic text is not converted when using
         * using the cyrillic variant and converted to Latin when using
         * the Latin variant.
+        * @param string $text Text to convert
+        * @param string $msg Optional message
         */
        protected function assertCyrillic( $text, $msg = '' ) {
                $this->assertUnConverted( $text, 'sr-ec', $msg );
@@ -220,6 +222,8 @@ class LanguageSrTest extends LanguageClassesTestCase {
         * Verifiy the given Latin text is not converted when using
         * using the Latin variant and converted to Cyrillic when using
         * the Cyrillic variant.
+        * @param string $text Text to convert
+        * @param string $msg Optional message
         */
        protected function assertLatin( $text, $msg = '' ) {
                $this->assertUnConverted( $text, 'sr-el', $msg );