Skip to content

Commit 29c2d4d

Browse files
committed
Fix CI
1 parent ff1b85e commit 29c2d4d

File tree

5 files changed

+8
-21
lines changed

5 files changed

+8
-21
lines changed

.scrutinizer.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

codecov.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
fixes:
2+
- "/var/www/html/extensions/SemanticCompoundQueries/::"

src/CompoundQueryProcessor.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
namespace SCQ;
44

5+
use SMW\Query\QueryResult;
56
use SMWQueryProcessor as QueryProcessor;
67
use SMWQuery as Query;
78
use Parser;
@@ -168,7 +169,7 @@ protected static function getSubParams( $param ) {
168169
* @param $context
169170
* @param $showmode
170171
*
171-
* @return SMWQueryResult
172+
* @return QueryResult
172173
*/
173174
protected static function getQueryResultFromFunctionParams( $rawParams, $context = QueryProcessor::INLINE_QUERY, $showMode = false ) {
174175
list( $querystring, $params, $printouts ) = self::getComponentsFromFunctionParams( $rawParams, $showMode );
@@ -226,7 +227,7 @@ protected static function mergeSMWPrintRequests( $printRequests1, $printRequests
226227
* @param $outputMode
227228
* @param $context
228229
*
229-
* @return SMWQueryResult
230+
* @return QueryResult
230231
*/
231232
protected static function getQueryResultFromQueryString( $querystring, array $params, $extraPrintouts, $context = QueryProcessor::INLINE_QUERY ) {
232233

src/CompoundQueryResult.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
namespace SCQ;
44

5-
use SMWQueryResult as QueryResult;
6-
use SMWResultArray as ResultArray;
5+
use SMW\Query\QueryResult;
6+
use SMW\Query\Result\ResultArray;
77

88
/**
99
* Subclass of SMWQueryResult - this class was mostly created in order to

0 commit comments

Comments
 (0)