Completed
Branch master (18f973)
by
unknown
31:19
created
includes/htmlform/HTMLForm.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -250,7 +250,6 @@  discard block
 block discarded – undo
250 250
 	 * Construct a HTMLForm object for given display type. May return a HTMLForm subclass.
251 251
 	 *
252 252
 	 * @param string $displayFormat
253
-	 * @param mixed $arguments... Additional arguments to pass to the constructor.
254 253
 	 * @return HTMLForm
255 254
 	 */
256 255
 	public static function factory( $displayFormat/*, $arguments...*/ ) {
@@ -1359,7 +1358,7 @@  discard block
 block discarded – undo
1359 1358
 	 * this message as its "<legend>" element.
1360 1359
 	 * @since 1.19
1361 1360
 	 *
1362
-	 * @param string|Message $msg Message key or Message object
1361
+	 * @param string $msg Message key or Message object
1363 1362
 	 *
1364 1363
 	 * @return HTMLForm $this for chaining calls (since 1.20)
1365 1364
 	 */
Please login to merge, or discard this patch.
includes/htmlform/OOUIHTMLForm.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -155,7 +155,7 @@
 block discarded – undo
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(
Please login to merge, or discard this patch.
includes/HttpFunctions.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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__ ) {
Please login to merge, or discard this patch.
includes/import/UploadSourceAdapter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
 	}
112 112
 
113 113
 	/**
114
-	 * @return mixed
114
+	 * @return integer
115 115
 	 */
116 116
 	function stream_tell() {
117 117
 		return $this->mPosition;
Please login to merge, or discard this patch.
includes/import/WikiRevision.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -384,14 +384,14 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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' ) ) {
Please login to merge, or discard this patch.
includes/installer/DatabaseInstaller.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -393,7 +393,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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() . '_' );
Please login to merge, or discard this patch.
includes/installer/InstallDocFormatter.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -21,6 +21,10 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
includes/installer/Installer.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -578,7 +578,7 @@  discard block
 block discarded – undo
578 578
 	 * fake password in which case leave it as it is.
579 579
 	 *
580 580
 	 * @param string $name
581
-	 * @param mixed $value
581
+	 * @param string $value
582 582
 	 */
583 583
 	public function setPassword( $name, $value ) {
584 584
 		if ( !preg_match( '/^\*+$/', $value ) ) {
@@ -1266,7 +1266,7 @@  discard block
 block discarded – undo
1266 1266
 	 *
1267 1267
 	 * If $versionInfo is not false, only executables with a version
1268 1268
 	 * matching $versionInfo[1] will be returned.
1269
-	 * @return bool|string
1269
+	 * @return string|false
1270 1270
 	 */
1271 1271
 	public static function locateExecutable( $path, $names, $versionInfo = false ) {
1272 1272
 		if ( !is_array( $names ) ) {
@@ -1298,14 +1298,14 @@  discard block
 block discarded – undo
1298 1298
 	/**
1299 1299
 	 * Same as locateExecutable(), but checks in getPossibleBinPaths() by default
1300 1300
 	 * @see locateExecutable()
1301
-	 * @param array $names Array of possible names.
1302
-	 * @param array|bool $versionInfo Default: false or array with two members:
1301
+	 * @param string[] $names Array of possible names.
1302
+	 * @param string[] $versionInfo Default: false or array with two members:
1303 1303
 	 *   0 => Command to run for version check, with $1 for the full executable name
1304 1304
 	 *   1 => String to compare the output with
1305 1305
 	 *
1306 1306
 	 * If $versionInfo is not false, only executables with a version
1307 1307
 	 * matching $versionInfo[1] will be returned.
1308
-	 * @return bool|string
1308
+	 * @return string|false
1309 1309
 	 */
1310 1310
 	public static function locateExecutableInDefaultPaths( $names, $versionInfo = false ) {
1311 1311
 		foreach ( self::getPossibleBinPaths() as $path ) {
@@ -1324,7 +1324,7 @@  discard block
 block discarded – undo
1324 1324
 	 * Used only by environment checks.
1325 1325
 	 * @param string $dir
1326 1326
 	 * @param string $url
1327
-	 * @return bool|int|string
1327
+	 * @return string|false
1328 1328
 	 */
1329 1329
 	public function dirIsExecutable( $dir, $url ) {
1330 1330
 		$scriptTypes = array(
Please login to merge, or discard this patch.
includes/installer/MysqlUpdater.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -289,7 +289,7 @@
 block discarded – undo
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 ) ) {
Please login to merge, or discard this patch.