Skip to content

Commit 2f1a3f7

Browse files
authored
Fix class imports (#17)
1 parent f3b73c1 commit 2f1a3f7

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

Diff for: src/Hooks.php

+5-4
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
use DeferredUpdates;
66
use JobQueueGroup;
77
use SMW\MediaWiki\Jobs\UpdateJob;
8+
use SMW\SemanticData;
89
use SMW\Services\ServicesFactory as ApplicationFactory;
10+
use SMW\Store;
911
use SMWDIBlob;
1012
use SMWQueryProcessor;
11-
use SMWSemanticData;
12-
use SMWStore;
1313

1414
class Hooks {
1515

@@ -24,8 +24,9 @@ public static function setup() {
2424
}
2525

2626
public static function onAfterDataUpdateComplete(
27-
SMWStore $store, SMWSemanticData $newData,
28-
$compositePropertyTableDiffIterator
27+
Store $store,
28+
SemanticData $newData,
29+
$compositePropertyTableDiffIterator
2930
) {
3031
global $wgSDUProperty;
3132
global $wgSDUTraversed;

0 commit comments

Comments
 (0)