Completed
Pull Request — master (#59)
by
unknown
05:02
created
SemanticFormsSelect.hooks.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/ApiSemanticFormsSelectRequestProcessor.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -125,6 +125,9 @@
 block discarded – undo
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 ) {
Please login to merge, or discard this patch.
src/SemanticFormsSelectInput.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -65,9 +65,9 @@
 block discarded – undo
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
Please login to merge, or discard this patch.