@@ -182,7 +182,7 @@ discard block |
||
182 | 182 | * @param string $propertyName property string |
183 | 183 | * @param string $valueString user value string |
184 | 184 | * @param mixed $caption user-defined caption |
185 | - * @param SMWDIWikiPage|null $contextPage context for parsing the value string |
|
185 | + * @param null|DIWikiPage $contextPage context for parsing the value string |
|
186 | 186 | * |
187 | 187 | * @return DataValue |
188 | 188 | */ |
@@ -306,6 +306,8 @@ discard block |
||
306 | 306 | /** |
307 | 307 | * @deprecated since 2.4, use DataTypeRegistry::newDataValueByText |
308 | 308 | * |
309 | + * @param string $propertyName |
|
310 | + * @param string $valueString |
|
309 | 311 | * @return DataValue |
310 | 312 | */ |
311 | 313 | public function newPropertyValue( $propertyName, $valueString, $caption = false, DIWikiPage $contextPage = null ) { |
@@ -314,6 +316,8 @@ discard block |
||
314 | 316 | |
315 | 317 | /** |
316 | 318 | * @deprecated since 1.9, use DataTypeRegistry::registerDataType |
319 | + * @param string $id |
|
320 | + * @param string $className |
|
317 | 321 | */ |
318 | 322 | public static function registerDatatype( $id, $className, $dataItemId, $label = false ) { |
319 | 323 | DataTypeRegistry::getInstance()->registerDataType( $id, $className, $dataItemId, $label ); |
@@ -321,6 +325,8 @@ discard block |
||
321 | 325 | |
322 | 326 | /** |
323 | 327 | * @deprecated since 1.9, use DataTypeRegistry::registerDataTypeAlias |
328 | + * @param string $id |
|
329 | + * @param string $label |
|
324 | 330 | */ |
325 | 331 | public static function registerDatatypeAlias( $id, $label ) { |
326 | 332 | DataTypeRegistry::getInstance()->registerDataTypeAlias( $id, $label ); |
@@ -403,7 +403,7 @@ discard block |
||
403 | 403 | * represent. Returns null if this attempt failed. |
404 | 404 | * |
405 | 405 | * @param ExpElement $expElement |
406 | - * @return SMWDataItem or null |
|
406 | + * @return null|DIWikiPage or null |
|
407 | 407 | */ |
408 | 408 | public function findDataItemForExpElement( ExpElement $expElement ) { |
409 | 409 | return self::$dataItemByExpElementMatchFinder->tryToFindDataItemForExpElement( $expElement ); |
@@ -440,7 +440,7 @@ discard block |
||
440 | 440 | * must take the type of the annotated object into account for some |
441 | 441 | * reason. |
442 | 442 | * |
443 | - * @param $propertyKey string the Id of the special property |
|
443 | + * @param string $propertyKey string the Id of the special property |
|
444 | 444 | * @param $forNamespace integer the namespace of the page which has a value for this property |
445 | 445 | * @return ExpNsResource|null |
446 | 446 | */ |
@@ -620,7 +620,7 @@ discard block |
||
620 | 620 | * elements are always preferred in query answering. |
621 | 621 | * |
622 | 622 | * @param $dataItem SMWDataItem |
623 | - * @return ExpElement|null |
|
623 | + * @return ExpLiteral|null |
|
624 | 624 | */ |
625 | 625 | static public function getDataItemHelperExpElement( SMWDataItem $dataItem ) { |
626 | 626 |
@@ -5,7 +5,6 @@ |
||
5 | 5 | use FeedItem; |
6 | 6 | use ParserOptions; |
7 | 7 | use Sanitizer; |
8 | -use SMWDIWikiPage; |
|
9 | 8 | use SMWQueryResult; |
10 | 9 | use TextContent; |
11 | 10 | use Title; |
@@ -95,7 +95,6 @@ discard block |
||
95 | 95 | * $icon should be one of: 'warning' (default), 'info'. |
96 | 96 | * |
97 | 97 | * @param array $messages |
98 | - * @param string $icon Acts like an enum. Callers must ensure safety, since this value is used directly in the output. |
|
99 | 98 | * @param string $seperator |
100 | 99 | * @param boolean $escape Should the messages be escaped or not (ie when they already are) |
101 | 100 | * |
@@ -201,7 +200,7 @@ discard block |
||
201 | 200 | * @param mixed $namespace |
202 | 201 | * @param boolean $complete |
203 | 202 | * |
204 | - * @return true |
|
203 | + * @return boolean |
|
205 | 204 | * |
206 | 205 | * @codeCoverageIgnore |
207 | 206 | */ |
@@ -116,6 +116,10 @@ |
||
116 | 116 | ); |
117 | 117 | } |
118 | 118 | |
119 | + /** |
|
120 | + * @param string $property |
|
121 | + * @param string $value |
|
122 | + */ |
|
119 | 123 | private function newDataValueForPagePropertyValue( $property, $value ) { |
120 | 124 | |
121 | 125 | $property = DIProperty::newFromUserLabel( $property ); |
@@ -81,7 +81,6 @@ |
||
81 | 81 | * |
82 | 82 | * @since 1.6 |
83 | 83 | * |
84 | - * @param SMWQueryResult $res |
|
85 | 84 | * |
86 | 85 | * @return string |
87 | 86 | */ |
@@ -168,6 +168,9 @@ |
||
168 | 168 | return $provider; |
169 | 169 | } |
170 | 170 | |
171 | + /** |
|
172 | + * @param \SMW\ParserOutput|null $parserOutput |
|
173 | + */ |
|
171 | 174 | private function findSemanticataFromOutput( $parserOutput ) { |
172 | 175 | |
173 | 176 | if ( method_exists( $parserOutput, 'getExtensionData' ) ) { |
@@ -41,7 +41,7 @@ |
||
41 | 41 | /** |
42 | 42 | * @see DataValue::loadDataItem |
43 | 43 | * |
44 | - * @param SMWDataItem $dataitem |
|
44 | + * @param DataItem $dataItem |
|
45 | 45 | * |
46 | 46 | * @return boolean |
47 | 47 | */ |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | /** |
61 | 61 | * @since 2.4 |
62 | 62 | * |
63 | - * @param $type |
|
63 | + * @param string $type |
|
64 | 64 | */ |
65 | 65 | public static function deregisterHandlerFor( $type ) { |
66 | 66 | unset( self::$messageHandler[$type] ); |
@@ -96,7 +96,6 @@ discard block |
||
96 | 96 | * |
97 | 97 | * @since 2.5 |
98 | 98 | * |
99 | - * @param string|array $parameters |
|
100 | 99 | * @param integer|null $type |
101 | 100 | * |
102 | 101 | * @return string |
@@ -119,7 +118,7 @@ discard block |
||
119 | 118 | * |
120 | 119 | * @since 2.5 |
121 | 120 | * |
122 | - * @param string $messageId |
|
121 | + * @param string $message |
|
123 | 122 | * |
124 | 123 | * @return boolean |
125 | 124 | */ |
@@ -130,7 +129,6 @@ discard block |
||
130 | 129 | /** |
131 | 130 | * @since 2.5 |
132 | 131 | * |
133 | - * @param string $json |
|
134 | 132 | * @param integer|null $type |
135 | 133 | * @param integer|null $language |
136 | 134 | * |