Completed
Branch master (f8f60f)
by
unknown
28:07
created
includes/media/PNGMetadataExtractor.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -37,6 +37,9 @@
 block discarded – undo
37 37
 		return $retVal;
38 38
 	}
39 39
 
40
+	/**
41
+	 * @param string $filename
42
+	 */
40 43
 	public function setCurrentFile( $filename ) {
41 44
 		$this->currentFile = $filename;
42 45
 	}
Please login to merge, or discard this patch.
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.
maintenance/updateDoubleWidthSearch.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -121,6 +121,9 @@
 block discarded – undo
121 121
 		}
122 122
 	}
123 123
 
124
+	/**
125
+	 * @param IDatabase $dbw
126
+	 */
124 127
 	public function doSpecialPageCacheUpdates( $dbw ) {
125 128
 		global $wgSpecialPageCacheUpdates;
126 129
 
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/filebackend/FSFileBackend.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -470,6 +470,10 @@  discard block
 block discarded – undo
470 470
 		return $status;
471 471
 	}
472 472
 
473
+	/**
474
+	 * @param string $fullCont
475
+	 * @param string $dirRel
476
+	 */
473 477
 	protected function doSecureInternal( $fullCont, $dirRel, array $params ) {
474 478
 		$status = Status::newGood();
475 479
 		list( , $shortCont, ) = FileBackend::splitStoragePath( $params['dir'] );
@@ -885,7 +889,7 @@  discard block
 block discarded – undo
885 889
 
886 890
 	/**
887 891
 	 * @see Iterator::current()
888
-	 * @return string|bool String or false
892
+	 * @return string String or false
889 893
 	 */
890 894
 	public function current() {
891 895
 		return $this->getRelPath( $this->iter->current()->getPathname() );
Please login to merge, or discard this patch.