Completed
Branch master (1655eb)
by
unknown
22:24
created
includes/site/SiteSQLStore.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
 	 *             instead.
40 40
 	 *
41 41
 	 * @param null $sitesTable IGNORED
42
-	 * @param null $cache IGNORED
42
+	 * @param null|BagOStuff $cache IGNORED
43 43
 	 *
44 44
 	 * @return SiteStore
45 45
 	 */
Please login to merge, or discard this patch.
includes/logging/LogPager.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -112,6 +112,9 @@
 block discarded – undo
112 112
 		}
113 113
 	}
114 114
 
115
+	/**
116
+	 * @return string
117
+	 */
115 118
 	function stripParameters( $text ) {
116 119
 		if ( !$this->stripParametersEnabled ) {
117 120
 			return $text;
Please login to merge, or discard this patch.
includes/skins/SkinTemplate.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -30,6 +30,9 @@
 block discarded – undo
30 30
 		}
31 31
 	}
32 32
 
33
+	/**
34
+	 * @param string $name
35
+	 */
33 36
 	function __call( $name, array $arguments ) {
34 37
 		if ( $this->conn === null ) {
35 38
 			list( $db, $groups, $wiki ) = $this->params;
Please login to merge, or discard this patch.
includes/FauxRequest.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
 	 * @param array $data Array of *non*-urlencoded key => value pairs, the
40 40
 	 *   fake GET/POST values
41 41
 	 * @param bool $wasPosted Whether to treat the data as POST
42
-	 * @param MediaWiki\Session\Session|array|null $session Session, session
42
+	 * @param MediaWiki\Session\Session|null $session Session, session
43 43
 	 *  data array, or null
44 44
 	 * @param string $protocol 'http' or 'https'
45 45
 	 * @throws MWException
@@ -126,7 +126,6 @@  discard block
 block discarded – undo
126 126
 
127 127
 	/**
128 128
 	 * @since 1.26
129
-	 * @param string $name Unprefixed name of the cookie to set
130 129
 	 * @param string|null $value Value of the cookie to set
131 130
 	 * @param string|null $prefix Cookie prefix. Defaults to $wgCookiePrefix
132 131
 	 */
@@ -152,6 +151,7 @@  discard block
 block discarded – undo
152 151
 
153 152
 	/**
154 153
 	 * @since 1.25
154
+	 * @param string $url
155 155
 	 */
156 156
 	public function setRequestURL( $url ) {
157 157
 		$this->requestUrl = $url;
Please login to merge, or discard this patch.
includes/MediaWikiServices.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -183,7 +183,7 @@
 block discarded – undo
183 183
 	 * given $bootstrapConfig. In particular, all wiring files defined in the
184 184
 	 * ServiceWiringFiles setting are loaded, and the MediaWikiServices hook is called.
185 185
 	 *
186
-	 * @param Config|null $bootstrapConfig The Config object to be registered as the
186
+	 * @param Config $bootstrapConfig The Config object to be registered as the
187 187
 	 *        'BootstrapConfig' service. This has to contain at least the information
188 188
 	 *        needed to set up the 'ConfigFactory' service. If not provided, any call
189 189
 	 *        to getBootstrapConfig(), getConfigFactory, or getMainConfig will fail.
Please login to merge, or discard this patch.
includes/specials/SpecialSearch.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1356,7 +1356,7 @@
 block discarded – undo
1356 1356
 	 * @since 1.18
1357 1357
 	 *
1358 1358
 	 * @param string $key
1359
-	 * @param mixed $value
1359
+	 * @param string $value
1360 1360
 	 */
1361 1361
 	public function setExtraParam( $key, $value ) {
1362 1362
 		$this->extraParams[$key] = $value;
Please login to merge, or discard this patch.
includes/Linker.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1275,7 +1275,7 @@  discard block
 block discarded – undo
1275 1275
 	 * @param string|null $wikiId Id (as used by WikiMap) of the wiki to generate links to.
1276 1276
 	 *  For use with external changes.
1277 1277
 	 *
1278
-	 * @return mixed|string
1278
+	 * @return string
1279 1279
 	 */
1280 1280
 	public static function formatComment(
1281 1281
 		$comment, $title = null, $local = false, $wikiId = null
@@ -1803,7 +1803,7 @@  discard block
 block discarded – undo
1803 1803
 	 * Split a link trail, return the "inside" portion and the remainder of the trail
1804 1804
 	 * as a two-element array
1805 1805
 	 * @param string $trail
1806
-	 * @return array
1806
+	 * @return string[]
1807 1807
 	 */
1808 1808
 	static function splitTrail( $trail ) {
1809 1809
 		global $wgContLang;
Please login to merge, or discard this patch.
includes/media/Bitmap.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 	 *
35 35
 	 * @param string $dstPath
36 36
 	 * @param bool $checkDstPath
37
-	 * @return string|Callable One of client, im, custom, gd, imext or an array( object, method )
37
+	 * @return string One of client, im, custom, gd, imext or an array( object, method )
38 38
 	 */
39 39
 	protected function getScalerType( $dstPath, $checkDstPath = true ) {
40 40
 		global $wgUseImageResize, $wgUseImageMagick, $wgCustomConvertCommand;
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
 	 * Get ImageMagick subsampling factors for the target JPEG pixel format.
109 109
 	 *
110 110
 	 * @param string $pixelFormat one of 'yuv444', 'yuv422', 'yuv420'
111
-	 * @return array of string keys
111
+	 * @return string[] of string keys
112 112
 	 */
113 113
 	protected function imageMagickSubsampling( $pixelFormat ) {
114 114
 		switch ( $pixelFormat ) {
Please login to merge, or discard this patch.
includes/api/ApiQueryImageInfo.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
 
104 104
 	/**
105 105
 	 * Fields in the oldimage table
106
-	 * @return array
106
+	 * @return string[]
107 107
 	 */
108 108
 	static function selectFields() {
109 109
 		return array(
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
 
233 233
 	/**
234 234
 	 * @param string $prefix
235
-	 * @return array
235
+	 * @return string[]
236 236
 	 */
237 237
 	function getCacheFields( $prefix = 'img_' ) {
238 238
 		$fields = parent::getCacheFields( $prefix );
Please login to merge, or discard this patch.