Completed
Branch master (49a6bc)
by
unknown
27:46
created
includes/specials/pagers/DeletedContribsPager.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -35,6 +35,9 @@
 block discarded – undo
35 35
 	 */
36 36
 	protected $mNavigationBar;
37 37
 
38
+	/**
39
+	 * @param string|null $target
40
+	 */
38 41
 	function __construct( IContextSource $context, $target, $namespace = false ) {
39 42
 		parent::__construct( $context );
40 43
 		$msgs = [ 'deletionlog', 'undeleteviewlink', 'diff' ];
Please login to merge, or discard this patch.
includes/specials/pagers/NewPagesPager.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -32,6 +32,9 @@
 block discarded – undo
32 32
 	 */
33 33
 	protected $mForm;
34 34
 
35
+	/**
36
+	 * @param SpecialNewpages $form
37
+	 */
35 38
 	function __construct( $form, FormOptions $opts ) {
36 39
 		parent::__construct( $form->getContext() );
37 40
 		$this->mForm = $form;
Please login to merge, or discard this patch.
includes/specials/pagers/ProtectedTitlesPager.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -198,6 +198,12 @@
 block discarded – undo
198 198
 class ProtectedTitlesPager extends AlphabeticPager {
199 199
 	public $mForm, $mConds;
200 200
 
201
+	/**
202
+	 * @param SpecialProtectedtitles $form
203
+	 * @param null|string $type
204
+	 * @param null|string $level
205
+	 * @param integer|null $namespace
206
+	 */
201 207
 	function __construct( $form, $conds = array(), $type, $level, $namespace,
202 208
 		$sizetype = '', $size = 0
203 209
 	) {
Please login to merge, or discard this patch.
includes/specials/SpecialDeletedContributions.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@
 block discarded – undo
128 128
 	/**
129 129
 	 * Generates the subheading with links
130 130
 	 * @param User $userObj User object for the target
131
-	 * @return string Appropriately-escaped HTML to be output literally
131
+	 * @return Message Appropriately-escaped HTML to be output literally
132 132
 	 * @todo FIXME: Almost the same as contributionsSub in SpecialContributions.php. Could be combined.
133 133
 	 */
134 134
 	function getSubTitle( $userObj ) {
Please login to merge, or discard this patch.
includes/specials/SpecialNewpages.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -39,6 +39,9 @@  discard block
 block discarded – undo
39 39
 		parent::__construct( 'Newpages' );
40 40
 	}
41 41
 
42
+	/**
43
+	 * @param string $par
44
+	 */
42 45
 	protected function setup( $par ) {
43 46
 		// Options
44 47
 		$opts = new FormOptions();
@@ -457,6 +460,9 @@  discard block
 block discarded – undo
457 460
 		}
458 461
 	}
459 462
 
463
+	/**
464
+	 * @return string
465
+	 */
460 466
 	protected function feedItemAuthor( $row ) {
461 467
 		return isset( $row->rc_user_text ) ? $row->rc_user_text : '';
462 468
 	}
Please login to merge, or discard this patch.
includes/parser/Preprocessor.php 1 patch
Doc Comments   +7 added lines, -8 removed lines patch added patch discarded remove patch
@@ -56,6 +56,7 @@  discard block
 block discarded – undo
56 56
 	 *
57 57
 	 * @param string $text
58 58
 	 * @param int $flags
59
+	 * @param string $tree
59 60
 	 */
60 61
 	protected function cacheSetTree( $text, $flags, $tree ) {
61 62
 		$config = RequestContext::getMain()->getConfig();
@@ -84,7 +85,7 @@  discard block
 block discarded – undo
84 85
 	 *
85 86
 	 * @param string $text
86 87
 	 * @param int $flags
87
-	 * @return PPNode_Hash_Tree|bool
88
+	 * @return false|string
88 89
 	 */
89 90
 	protected function cacheGetTree( $text, $flags ) {
90 91
 		$config = RequestContext::getMain()->getConfig();
@@ -128,7 +129,7 @@  discard block
 block discarded – undo
128 129
 	 * Create a new custom frame for programmatic use of parameter replacement
129 130
 	 * as used in some extensions.
130 131
 	 *
131
-	 * @param array $args
132
+	 * @param boolean $args
132 133
 	 *
133 134
 	 * @return PPFrame
134 135
 	 */
@@ -182,7 +183,7 @@  discard block
 block discarded – undo
182 183
 
183 184
 	/**
184 185
 	 * Expand a document tree node, caching the result on its parent with the given key
185
-	 * @param string|int $key
186
+	 * @param string $key
186 187
 	 * @param string|PPNode $root
187 188
 	 * @param int $flags
188 189
 	 * @return string
@@ -201,7 +202,6 @@  discard block
 block discarded – undo
201 202
 	 * Implode with flags for expand()
202 203
 	 * @param string $sep
203 204
 	 * @param int $flags
204
-	 * @param string|PPNode $args,...
205 205
 	 * @return string
206 206
 	 */
207 207
 	public function implodeWithFlags( $sep, $flags /*, ... */ );
@@ -209,7 +209,6 @@  discard block
 block discarded – undo
209 209
 	/**
210 210
 	 * Implode with no flags specified
211 211
 	 * @param string $sep
212
-	 * @param string|PPNode $args,...
213 212
 	 * @return string
214 213
 	 */
215 214
 	public function implode( $sep /*, ... */ );
@@ -218,7 +217,6 @@  discard block
 block discarded – undo
218 217
 	 * Makes an object that, when expand()ed, will be the same as one obtained
219 218
 	 * with implode()
220 219
 	 * @param string $sep
221
-	 * @param string|PPNode $args,...
222 220
 	 * @return PPNode
223 221
 	 */
224 222
 	public function virtualImplode( $sep /*, ... */ );
@@ -228,7 +226,6 @@  discard block
 block discarded – undo
228 226
 	 * @param string $start
229 227
 	 * @param string $sep
230 228
 	 * @param string $end
231
-	 * @param string|PPNode $args,...
232 229
 	 * @return PPNode
233 230
 	 */
234 231
 	public function virtualBracketedImplode( $start, $sep, $end /*, ... */ );
@@ -260,7 +257,7 @@  discard block
 block discarded – undo
260 257
 
261 258
 	/**
262 259
 	 * Get an argument to this frame by name
263
-	 * @param int|string $name
260
+	 * @param string $name
264 261
 	 * @return string|bool
265 262
 	 */
266 263
 	public function getArgument( $name );
@@ -289,6 +286,7 @@  discard block
 block discarded – undo
289 286
 	 * to respect it, and it may be removed in the future.
290 287
 	 *
291 288
 	 * @param bool $flag
289
+	 * @return void
292 290
 	 */
293 291
 	public function setVolatile( $flag = true );
294 292
 
@@ -325,6 +323,7 @@  discard block
 block discarded – undo
325 323
 	 *
326 324
 	 * @see self::getTTL()
327 325
 	 * @param int $ttl
326
+	 * @return void
328 327
 	 */
329 328
 	public function setTTL( $ttl );
330 329
 
Please login to merge, or discard this patch.
includes/libs/stats/NullStatsdDataFactory.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -53,7 +53,6 @@  discard block
 block discarded – undo
53 53
 	 * This function creates a 'increment' StatsdData object.
54 54
 	 *
55 55
 	 * @param string|array $key The metric(s) to increment.
56
-	 * @param float|1      $sampleRate The rate (0-1) for sampling.
57 56
 	 *
58 57
 	 * @return array
59 58
 	 **/
@@ -66,7 +65,6 @@  discard block
 block discarded – undo
66 65
 	 *
67 66
 	 *
68 67
 	 * @param string|array $key The metric(s) to decrement.
69
-	 * @param float|1      $sampleRate The rate (0-1) for sampling.
70 68
 	 *
71 69
 	 * @return mixed
72 70
 	 **/
Please login to merge, or discard this patch.
includes/collation/Collation.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
 	 * @since 1.16.3
44 44
 	 * @throws MWException
45 45
 	 * @param string $collationName
46
-	 * @return Collation
46
+	 * @return string
47 47
 	 */
48 48
 	public static function factory( $collationName ) {
49 49
 		switch ( $collationName ) {
Please login to merge, or discard this patch.
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.