Completed
Push — master ( 944e8c...873a6a )
by mw
32:14
created
src/DataTypeRegistry.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
 	 * @codeCoverageIgnore
127 127
 	 * @see ApiBase::getDescription
128 128
 	 *
129
-	 * @return array
129
+	 * @return string[]
130 130
 	 */
131 131
 	public function getDescription() {
132 132
 		return array(
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
 	 * @codeCoverageIgnore
139 139
 	 * @see ApiBase::getExamples
140 140
 	 *
141
-	 * @return array
141
+	 * @return string[]
142 142
 	 */
143 143
 	protected function getExamples() {
144 144
 		return array(
Please login to merge, or discard this patch.
src/MediaWiki/Api/Ask.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
 	 * @codeCoverageIgnore
127 127
 	 * @see ApiBase::getDescription
128 128
 	 *
129
-	 * @return array
129
+	 * @return string[]
130 130
 	 */
131 131
 	public function getDescription() {
132 132
 		return array(
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
 	 * @codeCoverageIgnore
139 139
 	 * @see ApiBase::getExamples
140 140
 	 *
141
-	 * @return array
141
+	 * @return string[]
142 142
 	 */
143 143
 	protected function getExamples() {
144 144
 		return array(
Please login to merge, or discard this patch.
src/MediaWiki/Api/AskArgs.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
 	 * @codeCoverageIgnore
127 127
 	 * @see ApiBase::getDescription
128 128
 	 *
129
-	 * @return array
129
+	 * @return string[]
130 130
 	 */
131 131
 	public function getDescription() {
132 132
 		return array(
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
 	 * @codeCoverageIgnore
139 139
 	 * @see ApiBase::getExamples
140 140
 	 *
141
-	 * @return array
141
+	 * @return string[]
142 142
 	 */
143 143
 	protected function getExamples() {
144 144
 		return array(
Please login to merge, or discard this patch.
src/MediaWiki/Hooks/ArticleDelete.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
 	/**
67 67
 	 * @since 1.9
68 68
 	 *
69
-	 * @return true
69
+	 * @return boolean
70 70
 	 */
71 71
 	public function process() {
72 72
 
Please login to merge, or discard this patch.
src/ParserFunctions/DocumentationParserFunction.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 	 * @param Parser $parser
23 23
 	 * @param ProcessingResult $result
24 24
 	 *
25
-	 * @return mixed
25
+	 * @return string
26 26
 	 */
27 27
 	public function handle( Parser $parser, ProcessingResult $result ) {
28 28
 		$parameters = $result->getParameters();
Please login to merge, or discard this patch.
src/Query/ProfileAnnotator/QueryProfileAnnotatorFactory.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace SMW\Tests\SQLStore;
4 4
 
5 5
 use SMW\SQLStore\PropertyTableOutdatedReferenceDisposer;
6
-use Title;
7 6
 
8 7
 /**
9 8
  * @covers \SMW\SQLStore\PropertyTableOutdatedReferenceDisposer
Please login to merge, or discard this patch.
src/Serializers/QueryResultSerializer.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 use ImportReporter;
7 7
 use WikiImporter;
8 8
 use RequestContext;
9
-
10 9
 use RuntimeException;
11 10
 
12 11
 /**
Please login to merge, or discard this patch.
Doc Comments   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,7 +60,8 @@  discard block
 block discarded – undo
60 60
 	 *
61 61
 	 * @since 1.7
62 62
 	 *
63
-	 * @param SMWDataItem $dataItem
63
+	 * @param DataItem $dataItem
64
+	 * @param PrintRequest $printRequest
64 65
 	 *
65 66
 	 * @return mixed
66 67
 	 */
@@ -143,7 +144,7 @@  discard block
 block discarded – undo
143 144
 	 *
144 145
 	 * @since 1.7
145 146
 	 *
146
-	 * @param SMWQueryResult $result
147
+	 * @param SMWQueryResult $queryResult
147 148
 	 *
148 149
 	 * @return array
149 150
 	 */
@@ -194,6 +195,9 @@  discard block
 block discarded – undo
194 195
 		return array( 'printrequests' => $printRequests, 'results' => $results);
195 196
 	}
196 197
 
198
+	/**
199
+	 * @param PrintRequest $printRequest
200
+	 */
197 201
 	private static function getSerializedPrintRequestFormat( $printRequest ) {
198 202
 
199 203
 		$serialized = array(
Please login to merge, or discard this patch.
src/SPARQLStore/QueryEngine/Interpreter/ConceptDescriptionInterpreter.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 use SMW\Query\Language\ThingDescription;
7 7
 use SMW\SPARQLStore\RepositoryConnection;
8 8
 use SMW\Query\DebugOutputFormatter;
9
-use SMW\CircularReferenceGuard;
10 9
 use SMW\SPARQLStore\QueryEngine\Condition\Condition;
11 10
 use SMW\SPARQLStore\QueryEngine\Condition\FalseCondition;
12 11
 use SMW\SPARQLStore\QueryEngine\Condition\SingletonCondition;
Please login to merge, or discard this patch.
src/SQLStore/ByIdDataItemFinder.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\SPARQLStore\QueryEngine\QueryEngine;
6 6
 use SMW\SPARQLStore\QueryEngine\EngineOptions;
7 7
 use SMW\SPARQLStore\QueryEngine\QueryResultFactory;
8
-use SMW\DIProperty;
9 8
 use SMWQuery as Query;
10 9
 
11 10
 /**
Please login to merge, or discard this patch.