@@ -167,7 +167,7 @@ discard block |
||
167 | 167 | * @param SMWSemanticData $new |
168 | 168 | * @param array $filterProperties Optional list of properties (string serializations) to filter on. Null for no filtering. |
169 | 169 | * |
170 | - * @return SMWChangeSet |
|
170 | + * @return SWLChangeSet |
|
171 | 171 | */ |
172 | 172 | public static function newFromSemanticData( SMWSemanticData $old, SMWSemanticData $new, array $filterProperties = null ) { |
173 | 173 | $subject = $old->getSubject(); |
@@ -446,7 +446,7 @@ discard block |
||
446 | 446 | /** |
447 | 447 | * Returns a list of ALL changes, including isertions and deletions. |
448 | 448 | * |
449 | - * @param SMWDIProperty $proprety |
|
449 | + * @param SMWDIProperty $property |
|
450 | 450 | * |
451 | 451 | * @return array of SWLPropertyChange |
452 | 452 | */ |
@@ -495,7 +495,7 @@ |
||
495 | 495 | * |
496 | 496 | * @since 0.1 |
497 | 497 | * |
498 | - * @param SMWChangeSet $changes |
|
498 | + * @param SWLChangeSet $changes |
|
499 | 499 | */ |
500 | 500 | public function notifyWatchingUsers( SWLChangeSet $changes ) { |
501 | 501 | $users = $this->getWatchingUsers(); |
@@ -20,9 +20,8 @@ discard block |
||
20 | 20 | * @since 0.1 |
21 | 21 | * |
22 | 22 | * @param SMWStore $store |
23 | - * @param SMWChangeSet $changes |
|
24 | 23 | * |
25 | - * @return true |
|
24 | + * @return boolean |
|
26 | 25 | */ |
27 | 26 | public static function onDataUpdate( SMWStore $store, SMWSemanticData $newData ) { |
28 | 27 | $subject = $newData->getSubject(); |
@@ -66,9 +65,9 @@ discard block |
||
66 | 65 | * |
67 | 66 | * @param SWLGroup $group |
68 | 67 | * @param array $userIDs |
69 | - * @param SMWChangeSet $changes |
|
68 | + * @param SWLChangeSet $changes |
|
70 | 69 | * |
71 | - * @return true |
|
70 | + * @return boolean |
|
72 | 71 | */ |
73 | 72 | public static function onGroupNotify( SWLGroup $group, array $userIDs, SWLChangeSet $changes ) { |
74 | 73 | global $egSWLMailPerChange, $egSWLMaxMails; |
@@ -105,7 +104,7 @@ discard block |
||
105 | 104 | * |
106 | 105 | * @since 0.1 |
107 | 106 | * |
108 | - * @return true |
|
107 | + * @return boolean |
|
109 | 108 | */ |
110 | 109 | public static function addToAdminLinks( &$admin_links_tree ) { |
111 | 110 | $displaying_data_section = $admin_links_tree->getSection( wfMessage( 'adminlinks_browsesearch' )->text() ); |
@@ -40,7 +40,7 @@ |
||
40 | 40 | /** |
41 | 41 | * @since 1.0 |
42 | 42 | * |
43 | - * @param TableUpdater $tableUpdater |
|
43 | + * @param \SWL\TableUpdater $tableUpdater |
|
44 | 44 | * @param User $user |
45 | 45 | * @param array &$options |
46 | 46 | */ |
@@ -3,7 +3,6 @@ |
||
3 | 3 | namespace SWL\MediaWiki\Hooks; |
4 | 4 | |
5 | 5 | use SWL\tableUpdater; |
6 | - |
|
7 | 6 | use User; |
8 | 7 | |
9 | 8 | /** |