@@ -126,7 +126,7 @@ discard block |
||
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 |
||
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( |
@@ -126,7 +126,7 @@ discard block |
||
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 |
||
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( |
@@ -126,7 +126,7 @@ discard block |
||
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 |
||
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( |
@@ -66,7 +66,7 @@ |
||
66 | 66 | /** |
67 | 67 | * @since 1.9 |
68 | 68 | * |
69 | - * @return true |
|
69 | + * @return boolean |
|
70 | 70 | */ |
71 | 71 | public function process() { |
72 | 72 |
@@ -22,7 +22,7 @@ |
||
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(); |
@@ -3,7 +3,6 @@ |
||
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 |
@@ -6,7 +6,6 @@ |
||
6 | 6 | use ImportReporter; |
7 | 7 | use WikiImporter; |
8 | 8 | use RequestContext; |
9 | - |
|
10 | 9 | use RuntimeException; |
11 | 10 | |
12 | 11 | /** |
@@ -60,7 +60,8 @@ discard block |
||
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 |
||
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 |
||
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( |
@@ -6,7 +6,6 @@ |
||
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; |
@@ -5,7 +5,6 @@ |
||
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 | /** |