Completed
Push — master ( dc1683...3e9aec )
by mw
07:38 queued 05:33
created
src/CompoundQueryProcessor.php 1 patch
Doc Comments   +9 added lines, -6 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
 	 *
133 133
 	 * @param string $param
134 134
 	 *
135
-	 * @return array
135
+	 * @return string[]
136 136
 	 */
137 137
 	protected static function getSubParams( $param ) {
138 138
 		$sub_params = array();
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
 	 * @param $context
169 169
 	 * @param $showmode
170 170
 	 *
171
-	 * @return SMWQueryResult
171
+	 * @return \SMWQueryResult
172 172
 	 */
173 173
 	protected static function getQueryResultFromFunctionParams( $rawparams, $context = QueryProcessor::INLINE_QUERY, $showmode = false ) {
174 174
 		$printouts = array();
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
 	 * Combine two arrays of SMWWikiPageValue objects into one
181 181
 	 *
182 182
 	 * @param array $result1
183
-	 * @param array $result2
183
+	 * @param \SMWDIWikiPage[] $result2
184 184
 	 *
185 185
 	 * @return array
186 186
 	 */
@@ -204,6 +204,9 @@  discard block
 block discarded – undo
204 204
 		return $result1;
205 205
 	}
206 206
 
207
+	/**
208
+	 * @param \SMW\Query\PrintRequest[] $printRequests2
209
+	 */
207 210
 	protected static function mergeSMWPrintRequests( $printRequests1, $printRequests2 ) {
208 211
 		$existingPrintoutLabels = array();
209 212
 		foreach ( $printRequests1 as $p1 ) {
@@ -220,13 +223,13 @@  discard block
 block discarded – undo
220 223
 	}
221 224
 
222 225
 	/**
223
-	 * @param $querystring
226
+	 * @param string $querystring
224 227
 	 * @param array $params
225 228
 	 * @param $extraPrintouts
226 229
 	 * @param $outputMode
227 230
 	 * @param $context
228 231
 	 *
229
-	 * @return SMWQueryResult
232
+	 * @return \SMWQueryResult
230 233
 	 */
231 234
 	protected static function getQueryResultFromQueryString( $querystring, array $params, $extraPrintouts, $context = QueryProcessor::INLINE_QUERY ) {
232 235
 
@@ -262,7 +265,7 @@  discard block
 block discarded – undo
262 265
 	 *
263 266
 	 * @param CompoundQueryResult $res
264 267
 	 * @param array $params These need to be the result of a list fed to getProcessedParams as of SMW 1.6.2
265
-	 * @param $outputmode
268
+	 * @param integer $outputmode
266 269
 	 * @param $context
267 270
 	 * @param string $format
268 271
 	 *
Please login to merge, or discard this patch.