Completed
Branch master (3592b6)
by
unknown
26:28
created
includes/MovePage.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -42,6 +42,9 @@
 block discarded – undo
42 42
 		$this->newTitle = $newTitle;
43 43
 	}
44 44
 
45
+	/**
46
+	 * @param string $reason
47
+	 */
45 48
 	public function checkPermissions( User $user, $reason ) {
46 49
 		$status = new Status();
47 50
 
Please login to merge, or discard this patch.
includes/objectcache/ObjectCache.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -262,7 +262,7 @@
 block discarded – undo
262 262
 	}
263 263
 
264 264
 	/**
265
-	 * @param array $params [optional] Array key 'fallback' for $fallback.
265
+	 * @param integer $params [optional] Array key 'fallback' for $fallback.
266 266
 	 * @param int|string $fallback Fallback cache, e.g. (CACHE_NONE, "hash") (since 1.24)
267 267
 	 * @return BagOStuff
268 268
 	 * @deprecated 1.27
Please login to merge, or discard this patch.
includes/objectcache/RedisBagOStuff.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -307,7 +307,7 @@  discard block
 block discarded – undo
307 307
 
308 308
 	/**
309 309
 	 * @param string $data
310
-	 * @return mixed
310
+	 * @return boolean|string
311 311
 	 */
312 312
 	protected function unserialize( $data ) {
313 313
 		return ctype_digit( $data ) ? intval( $data ) : unserialize( $data );
@@ -316,7 +316,7 @@  discard block
 block discarded – undo
316 316
 	/**
317 317
 	 * Get a Redis object with a connection suitable for fetching the specified key
318 318
 	 * @param string $key
319
-	 * @return array (server, RedisConnRef) or (false, false)
319
+	 * @return false[] (server, RedisConnRef) or (false, false)
320 320
 	 */
321 321
 	protected function getConnection( $key ) {
322 322
 		$candidates = array_keys( $this->serverTagMap );
Please login to merge, or discard this patch.
includes/page/Article.php 1 patch
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
 	/**
96 96
 	 * Constructor from a page id
97 97
 	 * @param int $id Article ID to load
98
-	 * @return Article|null
98
+	 * @return Article
99 99
 	 */
100 100
 	public static function newFromID( $id ) {
101 101
 		$t = Title::newFromID( $id );
@@ -353,7 +353,7 @@  discard block
 block discarded – undo
353 353
 	 * @note Code that wants to retrieve page content from the database should
354 354
 	 * use WikiPage::getContent().
355 355
 	 *
356
-	 * @return Content|null|bool
356
+	 * @return null|Content
357 357
 	 *
358 358
 	 * @since 1.21
359 359
 	 */
@@ -441,7 +441,7 @@  discard block
 block discarded – undo
441 441
 	 * on failure.
442 442
 	 *
443 443
 	 * @since 1.19
444
-	 * @return Revision|null
444
+	 * @return Revision
445 445
 	 */
446 446
 	public function getRevisionFetched() {
447 447
 		$this->fetchContentObject();
@@ -1531,7 +1531,7 @@  discard block
 block discarded – undo
1531 1531
 	 * Chances are you should just be using the ParserOutput from
1532 1532
 	 * WikitextContent::getParserOutput instead of calling this for redirects.
1533 1533
 	 *
1534
-	 * @param Title|array $target Destination(s) to redirect
1534
+	 * @param Title $target Destination(s) to redirect
1535 1535
 	 * @param bool $appendSubtitle [optional]
1536 1536
 	 * @param bool $forceKnown Should the image be shown as a bluelink regardless of existence?
1537 1537
 	 * @return string Containing HTML with redirect link
@@ -2119,7 +2119,7 @@  discard block
 block discarded – undo
2119 2119
 	 * @param string $reason
2120 2120
 	 * @param int $cascade
2121 2121
 	 * @param array $expiry
2122
-	 * @return bool
2122
+	 * @return Status
2123 2123
 	 */
2124 2124
 	public function updateRestrictions( $limit = array(), $reason = '',
2125 2125
 		&$cascade = 0, $expiry = array()
@@ -2176,7 +2176,7 @@  discard block
 block discarded – undo
2176 2176
 
2177 2177
 	/**
2178 2178
 	 * @param bool $hasHistory
2179
-	 * @return mixed
2179
+	 * @return false|string
2180 2180
 	 */
2181 2181
 	public function generateReason( &$hasHistory ) {
2182 2182
 		$title = $this->mPage->getTitle();
@@ -2187,7 +2187,7 @@  discard block
 block discarded – undo
2187 2187
 	// ****** B/C functions for static methods ( __callStatic is PHP>=5.3 ) ****** //
2188 2188
 
2189 2189
 	/**
2190
-	 * @return array
2190
+	 * @return string[]
2191 2191
 	 *
2192 2192
 	 * @deprecated since 1.24, use WikiPage::selectFields() instead
2193 2193
 	 */
Please login to merge, or discard this patch.
includes/page/CategoryPage.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
 	/**
42 42
 	 * Constructor from a page id
43 43
 	 * @param int $id Article ID to load
44
-	 * @return CategoryPage|null
44
+	 * @return CategoryPage
45 45
 	 */
46 46
 	public static function newFromID( $id ) {
47 47
 		$t = Title::newFromID( $id );
Please login to merge, or discard this patch.
includes/page/WikiFilePage.php 1 patch
Doc Comments   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -34,6 +34,9 @@  discard block
 block discarded – undo
34 34
 	protected $mFileLoaded = false;		    // !<
35 35
 	protected $mDupes = null;				// !<
36 36
 
37
+	/**
38
+	 * @param Title $title
39
+	 */
37 40
 	public function __construct( $title ) {
38 41
 		parent::__construct( $title );
39 42
 		$this->mDupes = null;
@@ -66,7 +69,7 @@  discard block
 block discarded – undo
66 69
 	}
67 70
 
68 71
 	/**
69
-	 * @return mixed|null|Title
72
+	 * @return Title|null
70 73
 	 */
71 74
 	public function getRedirectTarget() {
72 75
 		$this->loadFile();
@@ -120,7 +123,7 @@  discard block
 block discarded – undo
120 123
 	}
121 124
 
122 125
 	/**
123
-	 * @return bool|File
126
+	 * @return File
124 127
 	 */
125 128
 	public function getFile() {
126 129
 		$this->loadFile();
@@ -192,7 +195,7 @@  discard block
 block discarded – undo
192 195
 	 * For foreign API files (InstantCommons), this is not supported currently.
193 196
 	 * Results will include hidden categories.
194 197
 	 *
195
-	 * @return TitleArray|Title[]
198
+	 * @return TitleArrayFromResult|null
196 199
 	 * @since 1.23
197 200
 	 */
198 201
 	public function getForeignCategories() {
Please login to merge, or discard this patch.
includes/pager/TablePager.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
 	 *
221 221
 	 * @protected
222 222
 	 *
223
-	 * @param object $row The database result row
223
+	 * @param stdClass $row The database result row
224 224
 	 * @return array Array of attribute => value
225 225
 	 */
226 226
 	function getRowAttrs( $row ) {
@@ -387,7 +387,7 @@  discard block
 block discarded – undo
387 387
 	 * Resubmits all defined elements of the query string, except for a
388 388
 	 * blacklist, passed in the $blacklist parameter.
389 389
 	 *
390
-	 * @param array $blacklist Parameters from the request query which should not be resubmitted
390
+	 * @param string[] $blacklist Parameters from the request query which should not be resubmitted
391 391
 	 * @return string HTML fragment
392 392
 	 */
393 393
 	function getHiddenFields( $blacklist = array() ) {
Please login to merge, or discard this patch.
includes/parser/CoreParserFunctions.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -264,6 +264,9 @@  discard block
 block discarded – undo
264 264
 		}
265 265
 	}
266 266
 
267
+	/**
268
+	 * @param string $func
269
+	 */
267 270
 	public static function urlFunction( $func, $s = '', $arg = null ) {
268 271
 		$title = Title::newFromText( $s );
269 272
 		# Due to order of execution of a lot of bits, the values might be encoded
@@ -521,7 +524,7 @@  discard block
 block discarded – undo
521 524
 	 * to not break PHP 5.3
522 525
 	 * @param Parser $parser
523 526
 	 * @param string $title
524
-	 * @return mixed|string
527
+	 * @return string
525 528
 	 */
526 529
 	public static function mwnamespace( $parser, $title = null ) {
527 530
 		$t = Title::newFromText( $title );
Please login to merge, or discard this patch.
includes/parser/DateFormatter.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 	/**
121 121
 	 * Get a DateFormatter object
122 122
 	 *
123
-	 * @param Language|string|null $lang In which language to format the date
123
+	 * @param Language $lang In which language to format the date
124 124
 	 * 		Defaults to the site content language
125 125
 	 * @return DateFormatter
126 126
 	 */
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
 	/**
148 148
 	 * @param string $preference User preference
149 149
 	 * @param string $text Text to reformat
150
-	 * @param array $options Array can contain 'linked' and/or 'match-whole'
150
+	 * @param string[] $options Array can contain 'linked' and/or 'match-whole'
151 151
 	 *
152 152
 	 * @return string
153 153
 	 */
Please login to merge, or discard this patch.