Completed
Push — master ( 07dd29...2a8480 )
by mw
409:44 queued 374:41
created
src/SQLStore/QueryEngine/ConceptQuerySegmentBuilder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@
 block discarded – undo
96 96
 	/**
97 97
 	 * @since 2.2
98 98
 	 *
99
-	 * @return array
99
+	 * @return string[]
100 100
 	 */
101 101
 	public function getErrors() {
102 102
 		return $this->querySegmentListBuilder->getErrors();
Please login to merge, or discard this patch.
src/SQLStore/QueryEngine/Fulltext/SearchTableRebuilder.php 2 patches
Doc Comments   +7 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
 	 *
101 101
 	 * @since 2.5
102 102
 	 *
103
-	 * @return boolean
103
+	 * @return null|boolean
104 104
 	 */
105 105
 	public function rebuild() {
106 106
 
@@ -268,6 +268,9 @@  discard block
 block discarded – undo
268 268
 		$this->doRebuildFromRows( $searchTable, $table, $pid, $rows );
269 269
 	}
270 270
 
271
+	/**
272
+	 * @param SearchTable $searchTable
273
+	 */
271 274
 	private function doRebuildFromRows( $searchTable, $table, $pid, $rows ) {
272 275
 
273 276
 		$i = 0;
@@ -309,6 +312,9 @@  discard block
 block discarded – undo
309 312
 		$this->reportMessage( "\n" );
310 313
 	}
311 314
 
315
+	/**
316
+	 * @param string $message
317
+	 */
312 318
 	private function reportMessage( $message, $verbose = true ) {
313 319
 		if ( $verbose ) {
314 320
 			$this->messageReporter->reportMessage( $message );
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 use SMW\MediaWiki\Database;
8 8
 use SMW\DIProperty;
9 9
 use SMWDataItem as DataItem;
10
-use SMWDIBlob as DIBlob;
11 10
 
12 11
 /**
13 12
  * @license GNU GPL v2+
Please login to merge, or discard this patch.
src/SQLStore/QueryEngine/Fulltext/TextSanitizer.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -148,6 +148,9 @@
 block discarded – undo
148 148
 		return $text;
149 149
 	}
150 150
 
151
+	/**
152
+	 * @param string $text
153
+	 */
151 154
 	private function predictLanguage( $text ) {
152 155
 
153 156
 		if ( $this->languageDetection === array() ) {
Please login to merge, or discard this patch.
src/SQLStore/TableBuilder/PostgresTableBuilder.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -247,6 +247,9 @@  discard block
 block discarded – undo
247 247
 		}
248 248
 	}
249 249
 
250
+	/**
251
+	 * @param string $tableName
252
+	 */
250 253
 	private function doDropObsoleteIndicies( $tableName, array &$indicies ) {
251 254
 
252 255
 		$tableName = $this->connection->tableName( $tableName, 'raw' );
@@ -268,6 +271,9 @@  discard block
 block discarded – undo
268 271
 		}
269 272
 	}
270 273
 
274
+	/**
275
+	 * @param string $tableName
276
+	 */
271 277
 	private function doCreateIndex( $tableName, $indexType, $indexName, $columns, array $indexOptions ) {
272 278
 
273 279
 		if ( $indexType === 'FULLTEXT' ) {
Please login to merge, or discard this patch.
src/StringCondition.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
 	/**
61 61
 	 * @since 1.0
62 62
 	 *
63
-	 * @param srting $string
63
+	 * @param string $string
64 64
 	 * @param integer $condition
65 65
 	 * @param boolean $isDisjunctiveCondition
66 66
 	 */
Please login to merge, or discard this patch.
tests/phpunit/Integration/JSONScript/QueryTestCaseInterpreter.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
 	/**
100 100
 	 * @since 2.5
101 101
 	 *
102
-	 * @return boolean
102
+	 * @return boolean|null
103 103
 	 */
104 104
 	public function isFromCache() {
105 105
 		return isset( $this->contents['assert-queryresult']['isFromCache'] ) ? (bool)$this->contents['assert-queryresult']['isFromCache'] : null;
@@ -273,6 +273,7 @@  discard block
 block discarded – undo
273 273
 	/**
274 274
 	 * @since 2.2
275 275
 	 *
276
+	 * @param string $id
276 277
 	 * @return array
277 278
 	 */
278 279
 	public function getExpectedFormatOuputFor( $id ) {
Please login to merge, or discard this patch.
Integration/MediaWiki/Hooks/InternalParseBeforeLinksIntegrationTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use SMW\ApplicationFactory;
6 6
 use SMW\Tests\Utils\UtilityFactory;
7
-use Title;
8 7
 
9 8
 /**
10 9
  * @group SMW
Please login to merge, or discard this patch.
phpunit/Integration/MediaWiki/Hooks/ParserAfterTidyIntegrationTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use SMW\ApplicationFactory;
6 6
 use SMW\Tests\Utils\UtilityFactory;
7
-use Title;
8 7
 
9 8
 /**
10 9
  * @group semantic-mediawiki
Please login to merge, or discard this patch.
tests/phpunit/Integration/MediaWiki/LinksUpdateTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use SMW\ApplicationFactory;
6 6
 use SMW\DIWikiPage;
7 7
 use SMW\Tests\MwDBaseUnitTestCase;
8
-use SMW\Tests\Utils\UtilityFactory;
9 8
 use Title;
10 9
 
11 10
 /**
Please login to merge, or discard this patch.