Completed
Branch master (573807)
by
unknown
34:51
created
includes/media/XCF.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
 	}
86 86
 
87 87
 	/**
88
-	 * @return array
88
+	 * @return string[]
89 89
 	 */
90 90
 	function getOrderFields() {
91 91
 		return array( 'rd_namespace', 'rd_title', 'rd_from' );
Please login to merge, or discard this patch.
includes/objectcache/SqlBagOStuff.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -243,6 +243,9 @@
 block discarded – undo
243 243
 		return $cond;
244 244
 	}
245 245
 
246
+	/**
247
+	 * @param string $key
248
+	 */
246 249
 	function updateSortKeySizeHistogram( $key ) {
247 250
 		$length = strlen( $key );
248 251
 		if ( !isset( $this->sizeHistogram[$length] ) ) {
Please login to merge, or discard this patch.
includes/resourceloader/ResourceLoaderStartUpModule.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
 	}
86 86
 
87 87
 	/**
88
-	 * @return array
88
+	 * @return string[]
89 89
 	 */
90 90
 	function getOrderFields() {
91 91
 		return array( 'rd_namespace', 'rd_title', 'rd_from' );
Please login to merge, or discard this patch.
languages/classes/LanguageGan.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
 	/**
32 32
 	 * @param Language $langobj
33 33
 	 * @param string $maincode
34
-	 * @param array $variants
34
+	 * @param string[] $variants
35 35
 	 * @param array $variantfallbacks
36 36
 	 * @param array $flags
37 37
 	 * @param array $manualLevel
Please login to merge, or discard this patch.
languages/classes/LanguageKaa.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
 
47 47
 	/**
48 48
 	 * @param string $string
49
-	 * @return mixed|string
49
+	 * @return string
50 50
 	 */
51 51
 	function lcfirst( $string ) {
52 52
 		if ( strlen( $string ) && $string[0] == 'I' ) {
Please login to merge, or discard this patch.
includes/debug/MWDebug.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
 	 * Adds a line to the log
93 93
 	 *
94 94
 	 * @since 1.19
95
-	 * @param mixed $str
95
+	 * @param string $str
96 96
 	 */
97 97
 	public static function log( $str ) {
98 98
 		if ( !self::$enabled ) {
Please login to merge, or discard this patch.
includes/jobqueue/JobQueue.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -377,7 +377,7 @@
 block discarded – undo
377 377
 
378 378
 	/**
379 379
 	 * @see JobQueue::pop()
380
-	 * @return Job|bool
380
+	 * @return Job
381 381
 	 */
382 382
 	abstract protected function doPop();
383 383
 
Please login to merge, or discard this patch.
includes/session/CookieSessionProvider.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -302,8 +302,8 @@
 block discarded – undo
302 302
 	 * @param \WebRequest $request
303 303
 	 * @param string $key
304 304
 	 * @param string $prefix
305
-	 * @param mixed $default
306
-	 * @return mixed
305
+	 * @param boolean $default
306
+	 * @return string
307 307
 	 */
308 308
 	protected function getCookie( $request, $key, $prefix, $default = null ) {
309 309
 		$value = $request->getCookie( $key, $prefix, $default );
Please login to merge, or discard this patch.
includes/search/SearchSuggestion.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,9 +55,9 @@
 block discarded – undo
55 55
 	/**
56 56
 	 * Construct a new suggestion
57 57
 	 * @param float $score the suggestion score
58
-	 * @param string $text|null the suggestion text
59 58
 	 * @param Title|null $suggestedTitle the suggested title
60 59
 	 * @param int|null $suggestedTitleID the suggested title ID
60
+	 * @param string $text
61 61
 	 */
62 62
 	public function __construct( $score, $text = null, Title $suggestedTitle = null,
63 63
 			$suggestedTitleID = null ) {
Please login to merge, or discard this patch.