Completed
Branch master (f4070a)
by
unknown
25:04
created
includes/filerepo/ForeignDBViaLBRepo.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
 	 * Get a key on the primary cache for this repository.
85 85
 	 * Returns false if the repository's cache is not accessible at this site.
86 86
 	 * The parameters are the parts of the key, as for wfMemcKey().
87
-	 * @return bool|string
87
+	 * @return string|false
88 88
 	 */
89 89
 	function getSharedCacheKey( /*...*/ ) {
90 90
 		if ( $this->hasSharedCache() ) {
Please login to merge, or discard this patch.
includes/filerepo/RepoGroup.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
 	 * Search repositories for an image.
106 106
 	 * You can also use wfFindFile() to do this.
107 107
 	 *
108
-	 * @param Title|string $title Title object or string
108
+	 * @param string $title Title object or string
109 109
 	 * @param array $options Associative array of options:
110 110
 	 *   time:           requested time for an archived image, or false for the
111 111
 	 *                   current version. An image object will be returned which was
@@ -315,7 +315,7 @@  discard block
 block discarded – undo
315 315
 	/**
316 316
 	 * Get the repo instance with a given key.
317 317
 	 * @param string|int $index
318
-	 * @return bool|LocalRepo
318
+	 * @return string
319 319
 	 */
320 320
 	function getRepo( $index ) {
321 321
 		if ( !$this->reposInitialised ) {
Please login to merge, or discard this patch.
includes/ForkController.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -52,6 +52,9 @@
 block discarded – undo
52 52
 	 */
53 53
 	const RESTART_ON_ERROR = 1;
54 54
 
55
+	/**
56
+	 * @param integer $numProcs
57
+	 */
55 58
 	public function __construct( $numProcs, $flags = 0 ) {
56 59
 		if ( PHP_SAPI != 'cli' ) {
57 60
 			throw new MWException( "ForkController cannot be used from the web." );
Please login to merge, or discard this patch.
includes/GitInfo.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -250,7 +250,7 @@  discard block
 block discarded – undo
250 250
 	/**
251 251
 	 * Get an URL to a web viewer link to the HEAD revision.
252 252
 	 *
253
-	 * @return string|bool String if a URL is available or false otherwise
253
+	 * @return false|string String if a URL is available or false otherwise
254 254
 	 */
255 255
 	public function getHeadViewUrl() {
256 256
 		$url = $this->getRemoteUrl();
@@ -381,7 +381,7 @@  discard block
 block discarded – undo
381 381
 
382 382
 	/**
383 383
 	 * @see self::getHeadViewUrl()
384
-	 * @return bool|string
384
+	 * @return false|string
385 385
 	 */
386 386
 	public static function headViewUrl() {
387 387
 		return self::repo()->getHeadViewUrl();
Please login to merge, or discard this patch.
includes/HistoryBlob.php 1 patch
Doc Comments   +5 added lines, -4 removed lines patch added patch discarded remove patch
@@ -55,6 +55,7 @@  discard block
 block discarded – undo
55 55
 	 * Default text is not required for two-part external storage URLs.
56 56
 	 *
57 57
 	 * @param string $text
58
+	 * @return void
58 59
 	 */
59 60
 	function setText( $text );
60 61
 
@@ -161,7 +162,7 @@  discard block
 block discarded – undo
161 162
 	}
162 163
 
163 164
 	/**
164
-	 * @return array
165
+	 * @return string[]
165 166
 	 */
166 167
 	function __sleep() {
167 168
 		$this->compress();
@@ -531,7 +532,7 @@  discard block
 block discarded – undo
531 532
 	/**
532 533
 	 * @param string $base
533 534
 	 * @param string $diff
534
-	 * @return bool|string
535
+	 * @return string|false
535 536
 	 */
536 537
 	function patch( $base, $diff ) {
537 538
 		if ( function_exists( 'xdiff_string_bpatch' ) ) {
@@ -593,7 +594,7 @@  discard block
 block discarded – undo
593 594
 	 * the bytes backwards and initialised with 0 instead of 1. See bug 34428.
594 595
 	 *
595 596
 	 * @param string $s
596
-	 * @return string|bool False if the hash extension is not available
597
+	 * @return false|string False if the hash extension is not available
597 598
 	 */
598 599
 	function xdiffAdler32( $s ) {
599 600
 		if ( !function_exists( 'hash' ) ) {
@@ -626,7 +627,7 @@  discard block
 block discarded – undo
626 627
 	}
627 628
 
628 629
 	/**
629
-	 * @return array
630
+	 * @return string[]
630 631
 	 */
631 632
 	function __sleep() {
632 633
 		$this->compress();
Please login to merge, or discard this patch.
includes/htmlform/HTMLButtonField.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@
 block discarded – undo
125 125
 
126 126
 	/**
127 127
 	 * IE<8 has bugs with <button>, so we'll need to avoid them.
128
-	 * @return bool Whether the request is from a bad version of IE
128
+	 * @return integer Whether the request is from a bad version of IE
129 129
 	 */
130 130
 	private function isBadIE() {
131 131
 		$request = $this->mParent
Please login to merge, or discard this patch.
includes/htmlform/HTMLCheckMatrix.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
 	 * mParams['rows'] is an array with row labels as keys and row tags as values.
76 76
 	 * mParams['columns'] is an array with column labels as keys and column tags as values.
77 77
 	 *
78
-	 * @param array $value Array of the options that should be checked
78
+	 * @param string $value Array of the options that should be checked
79 79
 	 *
80 80
 	 * @return string
81 81
 	 */
@@ -151,6 +151,9 @@  discard block
 block discarded – undo
151 151
 		return $html;
152 152
 	}
153 153
 
154
+	/**
155
+	 * @param boolean $checked
156
+	 */
154 157
 	protected function getOneCheckbox( $checked, $attribs ) {
155 158
 		if ( $this->mParent instanceof OOUIHTMLForm ) {
156 159
 			return new OOUI\CheckboxInputWidget( array(
Please login to merge, or discard this patch.
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/HTMLFormField.php 1 patch
Doc Comments   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 	 * Defaults to false, which getOOUI will interpret as "use the HTML version"
50 50
 	 *
51 51
 	 * @param string $value
52
-	 * @return OOUI\Widget|false
52
+	 * @return boolean
53 53
 	 */
54 54
 	function getInputOOUI( $value ) {
55 55
 		return false;
@@ -318,6 +318,9 @@  discard block
 block discarded – undo
318 318
 		return true;
319 319
 	}
320 320
 
321
+	/**
322
+	 * @param HTMLFormField[] $alldata
323
+	 */
321 324
 	function filter( $value, $alldata ) {
322 325
 		if ( isset( $this->mFilterCallback ) ) {
323 326
 			$value = call_user_func( $this->mFilterCallback, $value, $alldata, $this->mParent );
@@ -803,7 +806,7 @@  discard block
 block discarded – undo
803 806
 	 * @since 1.20
804 807
 	 *
805 808
 	 * @param string $value The value of the input
806
-	 * @return array array( $errors, $errorClass )
809
+	 * @return string[] array( $errors, $errorClass )
807 810
 	 */
808 811
 	public function getErrorsAndErrorClass( $value ) {
809 812
 		$errors = $this->validate( $value, $this->mParent->mFieldData );
@@ -891,6 +894,9 @@  discard block
 block discarded – undo
891 894
 		return $html;
892 895
 	}
893 896
 
897
+	/**
898
+	 * @return string
899
+	 */
894 900
 	function getDefault() {
895 901
 		if ( isset( $this->mDefault ) ) {
896 902
 			return $this->mDefault;
@@ -1086,7 +1092,7 @@  discard block
 block discarded – undo
1086 1092
 	/**
1087 1093
 	 * Formats one or more errors as accepted by field validation-callback.
1088 1094
 	 *
1089
-	 * @param string|Message|array $errors Array of strings or Message instances
1095
+	 * @param string $errors Array of strings or Message instances
1090 1096
 	 * @return string HTML
1091 1097
 	 * @since 1.18
1092 1098
 	 */
Please login to merge, or discard this patch.