Index: trunk/extensions/SemanticMediaWiki/includes/storage/SMW_Store.php |
— | — | @@ -253,6 +253,8 @@ |
254 | 254 | * includes relations, attributes, and special properties. This does |
255 | 255 | * not delete the respective text from the wiki, but only clears the |
256 | 256 | * stored data. |
| 257 | + * |
| 258 | + * @param Title $subject |
257 | 259 | */ |
258 | 260 | public abstract function deleteSubject( Title $subject ); |
259 | 261 | |
— | — | @@ -260,6 +262,8 @@ |
261 | 263 | * Update the semantic data stored for some individual. The data is |
262 | 264 | * given as a SMWSemanticData object, which contains all semantic data |
263 | 265 | * for one particular subject. |
| 266 | + * |
| 267 | + * @param SMWSemanticData $data |
264 | 268 | */ |
265 | 269 | public abstract function doDataUpdate( SMWSemanticData $data ); |
266 | 270 | |
— | — | @@ -275,7 +279,7 @@ |
276 | 280 | |
277 | 281 | $this->doDataUpdate( $data ); |
278 | 282 | |
279 | | - // Invalidate the page, so data stored on it gets displayed immeditaely in queries. |
| 283 | + // Invalidate the page, so data stored on it gets displayed immediately in queries. |
280 | 284 | global $smwgAutoRefreshSubject; |
281 | 285 | if ( $smwgAutoRefreshSubject && !wfReadOnly() ) { |
282 | 286 | $title = Title::makeTitle( $data->getSubject()->getNamespace(), $data->getSubject()->getDBkey() ); |
— | — | @@ -323,7 +327,9 @@ |
324 | 328 | * the case that the query asked for a plain string (querymode |
325 | 329 | * MODE_COUNT or MODE_DEBUG) a plain wiki and HTML-compatible string is |
326 | 330 | * returned. |
327 | | - * |
| 331 | + * |
| 332 | + * @param SMWQuery $query |
| 333 | + * |
328 | 334 | * @return SMWQueryResult |
329 | 335 | */ |
330 | 336 | public abstract function getQueryResult( SMWQuery $query ); |