Completed
Push — master ( ebe875...a265d1 )
by mw
94:25 queued 69:18
created
includes/storage/SQLStore/SMW_SQLStore3.php 1 patch
Doc Comments   +9 added lines, -6 removed lines patch added patch discarded remove patch
@@ -250,6 +250,9 @@  discard block
 block discarded – undo
250 250
 		return $this->reader;
251 251
 	}
252 252
 
253
+	/**
254
+	 * @return SemanticData
255
+	 */
253 256
 	public function getSemanticData( DIWikiPage $subject, $filter = false ) {
254 257
 
255 258
 		$result = $this->cachedValueLookupStore->getSemanticData(
@@ -261,7 +264,7 @@  discard block
 block discarded – undo
261 264
 	}
262 265
 
263 266
 	/**
264
-	 * @param mixed $subject
267
+	 * @param DIWikiPage $subject
265 268
 	 * @param DIProperty $property
266 269
 	 * @param null $requestOptions
267 270
 	 *
@@ -407,7 +410,7 @@  discard block
 block discarded – undo
407 410
 	/**
408 411
 	 * @param RequestOptions|null $requestOptions
409 412
 	 *
410
-	 * @return CachedListLookup
413
+	 * @return SMW\SQLStore\Lookup\CachedListLookup
411 414
 	 */
412 415
 	public function getPropertiesSpecial( $requestOptions = null ) {
413 416
 		return $this->factory->newPropertyUsageCachedListLookup( $requestOptions );
@@ -416,7 +419,7 @@  discard block
 block discarded – undo
416 419
 	/**
417 420
 	 * @param RequestOptions|null $requestOptions
418 421
 	 *
419
-	 * @return CachedListLookup
422
+	 * @return SMW\SQLStore\Lookup\CachedListLookup
420 423
 	 */
421 424
 	public function getUnusedPropertiesSpecial( $requestOptions = null ) {
422 425
 		return $this->factory->newUnusedPropertyCachedListLookup( $requestOptions );
@@ -425,7 +428,7 @@  discard block
 block discarded – undo
425 428
 	/**
426 429
 	 * @param RequestOptions|null $requestOptions
427 430
 	 *
428
-	 * @return CachedListLookup
431
+	 * @return SMW\SQLStore\Lookup\CachedListLookup
429 432
 	 */
430 433
 	public function getWantedPropertiesSpecial( $requestOptions = null ) {
431 434
 		return $this->factory->newUndeclaredPropertyCachedListLookup( $requestOptions );
@@ -473,7 +476,7 @@  discard block
 block discarded – undo
473 476
 	 *
474 477
 	 * @since 1.8
475 478
 	 * @param Title $concept
476
-	 * @return array of error strings (empty if no errors occurred)
479
+	 * @return string[] of error strings (empty if no errors occurred)
477 480
 	 */
478 481
 	public function refreshConceptCache( Title $concept ) {
479 482
 		return $this->factory->newMasterConceptCache()->refreshConceptCache( $concept );
@@ -515,7 +518,7 @@  discard block
 block discarded – undo
515 518
 	 * @since 1.8
516 519
 	 *
517 520
 	 * @param SMWRequestOptions|null $requestOptions
518
-	 * @param string $valuecol
521
+	 * @param string $valueCol
519 522
 	 *
520 523
 	 * @return array
521 524
 	 */
Please login to merge, or discard this patch.