Completed
Push — master ( 30add5...f043e7 )
by mw
14s
created
src/DataValues/ValueParsers/AllowsPatternContentParser.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -62,6 +62,9 @@
 block discarded – undo
62 62
 		return $contentList[$userValue];
63 63
 	}
64 64
 
65
+	/**
66
+	 * @param string $contents
67
+	 */
65 68
 	private function doParseContent( $contents ) {
66 69
 
67 70
 		$list = array();
Please login to merge, or discard this patch.
src/Maintenance/DistinctEntityDataRebuilder.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,6 @@  discard block
 block discarded – undo
71 71
 	/**
72 72
 	 * @since 2.1
73 73
 	 *
74
-	 * @param MessageReporter $reporter
75 74
 	 */
76 75
 	public function setOptions( Options $options ) {
77 76
 		$this->options = $options;
@@ -281,6 +280,10 @@  discard block
 block discarded – undo
281 280
 		}
282 281
 	}
283 282
 
283
+	/**
284
+	 * @param boolean $verbose
285
+	 * @param string $progress
286
+	 */
284 287
 	private function doPrintDotProgressIndicator( $verbose, $progress ) {
285 288
 
286 289
 		if ( ( $this->rebuildCount - 1 ) % 60 === 0 ) {
Please login to merge, or discard this patch.
includes/storage/SQLStore/SMW_SQLStore3_Writers.php 1 patch
Doc Comments   +6 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,6 +89,9 @@  discard block
 block discarded – undo
89 89
 		\Hooks::run( 'SMW::SQLStore::AfterDeleteSubjectComplete', array( $this->store, $title ) );
90 90
 	}
91 91
 
92
+	/**
93
+	 * @param DIWikiPage $subject
94
+	 */
92 95
 	private function doDeleteFor( $id, $subject, $subobjects ) {
93 96
 
94 97
 		if ( $subject->getNamespace() === SMW_NS_CONCEPT ) { // make sure to clear caches
@@ -128,7 +131,6 @@  discard block
 block discarded – undo
128 131
 	 * @see SMWStore::doDataUpdate
129 132
 	 *
130 133
 	 * @since 1.8
131
-	 * @param SMWSemanticData $data
132 134
 	 */
133 135
 	public function doDataUpdate( SMWSemanticData $semanticData ) {
134 136
 		\Hooks::run( 'SMWSQLStore3::updateDataBefore', array( $this->store, $semanticData ) );
@@ -987,6 +989,9 @@  discard block
 block discarded – undo
987 989
 		return ( $new_tid == 0 ) ? $sid : $new_tid;
988 990
 	}
989 991
 
992
+	/**
993
+	 * @param integer $redirectId
994
+	 */
990 995
 	private function addToDeferredUpdate( $oldTitle, $newTitle, $redirectId ) {
991 996
 
992 997
 		$jobFactory = ApplicationFactory::getInstance()->newJobFactory();
Please login to merge, or discard this patch.
src/SQLStore/QueryDependency/DependencyLinksTableUpdater.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -99,7 +99,6 @@
 block discarded – undo
99 99
 	/**
100 100
 	 * @since 2.4
101 101
 	 *
102
-	 * @param array $dependencyList
103 102
 	 */
104 103
 	public function deleteDependenciesFromList( array $deleteIdList ) {
105 104
 
Please login to merge, or discard this patch.
src/Maintenance/DataRebuilder.php 1 patch
Doc Comments   +14 added lines, -1 removed lines patch added patch discarded remove patch
@@ -305,6 +305,9 @@  discard block
 block discarded – undo
305 305
 		return true;
306 306
 	}
307 307
 
308
+	/**
309
+	 * @param double $byIdDataRebuildDispatcher
310
+	 */
308 311
 	private function doExecuteFor( $byIdDataRebuildDispatcher, &$id ) {
309 312
 
310 313
 		if ( !$this->options->has( 'ignore-exceptions' ) ) {
@@ -388,6 +391,9 @@  discard block
 block discarded – undo
388 391
 		return true;
389 392
 	}
390 393
 
394
+	/**
395
+	 * @param double $byIdDataRebuildDispatcher
396
+	 */
391 397
 	private function deleteMarkedSubjects( $byIdDataRebuildDispatcher ) {
392 398
 
393 399
 		$matches = array();
@@ -421,6 +427,9 @@  discard block
 block discarded – undo
421 427
 		$this->reportMessage( "\n\n{$matchesCount} IDs removed.\n\n" );
422 428
 	}
423 429
 
430
+	/**
431
+	 * @param string $startIdFile
432
+	 */
424 433
 	private function idFileIsWritable( $startIdFile ) {
425 434
 
426 435
 		if ( !is_writable( file_exists( $startIdFile ) ? $startIdFile : dirname( $startIdFile ) ) ) {
@@ -437,7 +446,7 @@  discard block
 block discarded – undo
437 446
 	}
438 447
 
439 448
 	/**
440
-	 * @param array $options
449
+	 * @param Options $options
441 450
 	 */
442 451
 	private function setFiltersFromOptions( Options $options ) {
443 452
 		$this->filters = array();
@@ -457,6 +466,10 @@  discard block
 block discarded – undo
457 466
 		}
458 467
 	}
459 468
 
469
+	/**
470
+	 * @param boolean $verbose
471
+	 * @param string $progress
472
+	 */
460 473
 	private function doPrintDotProgressIndicator( $verbose, $progress ) {
461 474
 
462 475
 		if ( ( $this->rebuildCount - 1 ) % 60 === 0 ) {
Please login to merge, or discard this patch.
includes/dataitems/SMW_DI_Property.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -259,6 +259,7 @@  discard block
 block discarded – undo
259 259
 	/**
260 260
 	 * @since  2.0
261 261
 	 *
262
+	 * @param string $propertyTypeId
262 263
 	 * @return self
263 264
 	 * @throws RuntimeException
264 265
 	 * @throws InvalidArgumentException
@@ -391,6 +392,7 @@  discard block
 block discarded – undo
391 392
 
392 393
 	/**
393 394
 	 * @deprecated since 2.1, use PropertyRegistry::findPropertyIdByLabel
395
+	 * @param string $label
394 396
 	 */
395 397
 	public static function findPropertyID( $label, $useAlias = true ) {
396 398
 		return PropertyRegistry::getInstance()->findPropertyIdByLabel( $label, $useAlias );
@@ -424,6 +426,9 @@  discard block
 block discarded – undo
424 426
 		PropertyRegistry::getInstance()->registerPropertyAlias( $id, $label );
425 427
 	}
426 428
 
429
+	/**
430
+	 * @param string $subobjectName
431
+	 */
427 432
 	private function newDIWikiPage( $dbkey, $subobjectName ) {
428 433
 
429 434
 		// If an inverse marker is present just omit the marker so a normal
Please login to merge, or discard this patch.
src/DataTypeRegistry.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -322,7 +322,7 @@  discard block
 block discarded – undo
322 322
 	/**
323 323
 	 * @since 2.4
324 324
 	 *
325
-	 * @return array
325
+	 * @return string[]
326 326
 	 */
327 327
 	public function getCanonicalDatatypeLabels() {
328 328
 		return $this->canonicalLabels;
@@ -334,7 +334,7 @@  discard block
 block discarded – undo
334 334
 	 * returned for internal types without user labels (e.g. the special types
335 335
 	 * for some special properties), and for user defined types.
336 336
 	 *
337
-	 * @return array
337
+	 * @return string[]
338 338
 	 */
339 339
 	public function getKnownTypeLabels() {
340 340
 		return $this->typeLabels;
@@ -343,7 +343,7 @@  discard block
 block discarded – undo
343 343
 	/**
344 344
 	 * @since 2.1
345 345
 	 *
346
-	 * @return array
346
+	 * @return string[]
347 347
 	 */
348 348
 	public function getKnownTypeAliases() {
349 349
 		return $this->typeAliases;
Please login to merge, or discard this patch.
src/NumberFormatter.php 1 patch
Doc Comments   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 	/**
56 56
 	 * @since 2.1
57 57
 	 *
58
-	 * @return Localizer
58
+	 * @return NumberFormatter
59 59
 	 */
60 60
 	public static function getInstance() {
61 61
 
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
 	 * @since 2.4
103 103
 	 *
104 104
 	 * @param mixed $value input number
105
-	 * @param integer|false $precision
105
+	 * @param integer $precision
106 106
 	 *
107 107
 	 * @return string
108 108
 	 */
@@ -248,6 +248,10 @@  discard block
 block discarded – undo
248 248
 		return $this->decimalSeparatorInUserLanguage;
249 249
 	}
250 250
 
251
+	/**
252
+	 * @param string $decimal
253
+	 * @param string $thousand
254
+	 */
251 255
 	private function doFormatByPrecision( $value, $precision = false, $decimal, $thousand ) {
252 256
 		// Format to some level of precision; number_format does rounding and
253 257
 		// locale formatting, x and y are used temporarily since number_format
Please login to merge, or discard this patch.
src/PropertyRegistry.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
 	/**
124 124
 	 * @since 2.1
125 125
 	 *
126
-	 * @return array
126
+	 * @return string[]
127 127
 	 */
128 128
 	public function getKnownPropertyAliases() {
129 129
 		return $this->propertyAliasFinder->getKnownPropertyAliases();
@@ -267,6 +267,7 @@  discard block
 block discarded – undo
267 267
 
268 268
 	/**
269 269
 	 * @deprecated since 2.1 use findPropertyIdByLabel instead
270
+	 * @param string $label
270 271
 	 */
271 272
 	public function findPropertyId( $label, $useAlias = true ) {
272 273
 		return $this->findPropertyIdByLabel( $label, $useAlias );
@@ -369,6 +370,9 @@  discard block
 block discarded – undo
369 370
 		\Hooks::run( 'SMW::Property::initProperties', array( $this ) );
370 371
 	}
371 372
 
373
+	/**
374
+	 * @param string|boolean $label
375
+	 */
372 376
 	private function registerPropertyLabel( $id, $label, $asCanonical = true ) {
373 377
 		$this->propertyLabelFinder->registerPropertyLabel( $id, $label, $asCanonical );
374 378
 	}
Please login to merge, or discard this patch.