@@ -12,7 +12,7 @@ |
||
12 | 12 | * This is attached to the MediaWiki 'ParserFirstCallInit' hook. |
13 | 13 | * |
14 | 14 | * @param $parser Parser |
15 | - * @return bool |
|
15 | + * @return null|boolean |
|
16 | 16 | */ |
17 | 17 | public static function onSemanticFormsSelectSetup ( & $parser ) { |
18 | 18 |
@@ -125,6 +125,9 @@ |
||
125 | 125 | ) ); |
126 | 126 | } |
127 | 127 | |
128 | + /** |
|
129 | + * @param string $sep |
|
130 | + */ |
|
128 | 131 | private function getFormattedValuesFrom( $sep, $values ) { |
129 | 132 | |
130 | 133 | if ( strpos( $values, $sep ) === false ) { |
@@ -65,9 +65,9 @@ |
||
65 | 65 | * Returns the HTML code to be included in the output page for this input. |
66 | 66 | * @deprecated use getHtmlText() instead |
67 | 67 | * |
68 | - * @param $cur_value |
|
69 | - * @param $input_name |
|
70 | - * @param $is_mandatory |
|
68 | + * @param string $cur_value |
|
69 | + * @param string $input_name |
|
70 | + * @param boolean $is_mandatory |
|
71 | 71 | * @param $is_disabled |
72 | 72 | * @param $other_args |
73 | 73 | * @return string |