@@ -55,6 +55,9 @@ |
||
55 | 55 | ) + $this->getAttributes( array( 'disabled', 'tabindex' ), array( 'tabindex' => 'tabIndex' ) ) ); |
56 | 56 | } |
57 | 57 | |
58 | + /** |
|
59 | + * @param string $value |
|
60 | + */ |
|
58 | 61 | function formatOptions( $options, $value ) { |
59 | 62 | $html = ''; |
60 | 63 |
@@ -155,7 +155,7 @@ |
||
155 | 155 | * @param OOUI\FieldLayout[] $fieldsHtml |
156 | 156 | * @param string $sectionName |
157 | 157 | * @param bool $anyFieldHasLabel Unused |
158 | - * @return string HTML |
|
158 | + * @return OOUI\FieldsetLayout HTML |
|
159 | 159 | */ |
160 | 160 | protected function formatSection( array $fieldsHtml, $sectionName, $anyFieldHasLabel ) { |
161 | 161 | $config = array( |
@@ -186,7 +186,7 @@ discard block |
||
186 | 186 | * @todo FIXME this is wildly inaccurate and fails to actually check most stuff |
187 | 187 | * |
188 | 188 | * @param string $uri URI to check for validity |
189 | - * @return bool |
|
189 | + * @return integer |
|
190 | 190 | */ |
191 | 191 | public static function isValidURI( $uri ) { |
192 | 192 | return preg_match( |
@@ -317,7 +317,7 @@ discard block |
||
317 | 317 | * @param array $options (optional) extra params to pass (see Http::request()) |
318 | 318 | * @param string $caller The method making this request, for profiling |
319 | 319 | * @throws MWException |
320 | - * @return CurlHttpRequest|PhpHttpRequest |
|
320 | + * @return string |
|
321 | 321 | * @see MWHttpRequest::__construct |
322 | 322 | */ |
323 | 323 | public static function factory( $url, $options = null, $caller = __METHOD__ ) { |
@@ -111,7 +111,7 @@ |
||
111 | 111 | } |
112 | 112 | |
113 | 113 | /** |
114 | - * @return mixed |
|
114 | + * @return integer |
|
115 | 115 | */ |
116 | 116 | function stream_tell() { |
117 | 117 | return $this->mPosition; |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | } |
96 | 96 | |
97 | 97 | /** |
98 | - * @return null|XMLReader |
|
98 | + * @return XMLReader |
|
99 | 99 | */ |
100 | 100 | public function getReader() { |
101 | 101 | return $this->reader; |
@@ -116,6 +116,9 @@ discard block |
||
116 | 116 | wfDebug( "IMPORT: $data\n" ); |
117 | 117 | } |
118 | 118 | |
119 | + /** |
|
120 | + * @param string $msg |
|
121 | + */ |
|
119 | 122 | public function notice( $msg /*, $param, ...*/ ) { |
120 | 123 | $params = func_get_args(); |
121 | 124 | array_shift( $params ); |
@@ -384,14 +384,14 @@ discard block |
||
384 | 384 | } |
385 | 385 | |
386 | 386 | /** |
387 | - * @return mixed |
|
387 | + * @return string |
|
388 | 388 | */ |
389 | 389 | function getSrc() { |
390 | 390 | return $this->src; |
391 | 391 | } |
392 | 392 | |
393 | 393 | /** |
394 | - * @return bool|string |
|
394 | + * @return false|string |
|
395 | 395 | */ |
396 | 396 | function getSha1() { |
397 | 397 | if ( $this->sha1base36 ) { |
@@ -415,7 +415,7 @@ discard block |
||
415 | 415 | } |
416 | 416 | |
417 | 417 | /** |
418 | - * @return mixed |
|
418 | + * @return string |
|
419 | 419 | */ |
420 | 420 | function getFilename() { |
421 | 421 | return $this->filename; |
@@ -429,7 +429,7 @@ discard block |
||
429 | 429 | } |
430 | 430 | |
431 | 431 | /** |
432 | - * @return mixed |
|
432 | + * @return integer |
|
433 | 433 | */ |
434 | 434 | function getSize() { |
435 | 435 | return $this->size; |
@@ -681,7 +681,7 @@ discard block |
||
681 | 681 | } |
682 | 682 | |
683 | 683 | /** |
684 | - * @return bool|string |
|
684 | + * @return false|string |
|
685 | 685 | */ |
686 | 686 | function downloadSource() { |
687 | 687 | if ( !$this->config->get( 'EnableUploads' ) ) { |
@@ -393,7 +393,7 @@ discard block |
||
393 | 393 | /** |
394 | 394 | * Get a variable, taking local defaults into account. |
395 | 395 | * @param string $var |
396 | - * @param mixed|null $default |
|
396 | + * @param boolean $default |
|
397 | 397 | * @return mixed |
398 | 398 | */ |
399 | 399 | public function getVar( $var, $default = null ) { |
@@ -516,8 +516,8 @@ discard block |
||
516 | 516 | * Convenience function to set variables based on form data. |
517 | 517 | * Assumes that variables containing "password" in the name are (potentially |
518 | 518 | * fake) passwords. |
519 | - * @param array $varNames |
|
520 | - * @return array |
|
519 | + * @param string[] $varNames |
|
520 | + * @return string[] |
|
521 | 521 | */ |
522 | 522 | public function setVarsFromRequest( $varNames ) { |
523 | 523 | return $this->parent->setVarsFromRequest( $varNames, $this->getName() . '_' ); |
@@ -21,6 +21,10 @@ |
||
21 | 21 | */ |
22 | 22 | |
23 | 23 | class InstallDocFormatter { |
24 | + |
|
25 | + /** |
|
26 | + * @param string $text |
|
27 | + */ |
|
24 | 28 | static function format( $text ) { |
25 | 29 | $obj = new self( $text ); |
26 | 30 |
@@ -289,7 +289,7 @@ |
||
289 | 289 | * @param string $table Table name |
290 | 290 | * @param string $field Field name to check |
291 | 291 | * @param string $patchFile Path to the patch to correct the field |
292 | - * @return bool |
|
292 | + * @return boolean|null |
|
293 | 293 | */ |
294 | 294 | protected function checkBin( $table, $field, $patchFile ) { |
295 | 295 | if ( !$this->doTable( $table ) ) { |