Completed
Push — master ( 65a2de...91e3d3 )
by mw
11:17
created
includes/SWL_ChangeSet.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 	 */
Please login to merge, or discard this patch.
includes/SWL_Group.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -495,7 +495,7 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.
SemanticWatchlist.hooks.php 1 patch
Doc Comments   +4 added lines, -5 removed lines patch added patch discarded remove patch
@@ -20,9 +20,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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() );
Please login to merge, or discard this patch.
src/MediaWiki/Hooks/UserSaveOptions.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
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
 	 */
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace SWL\MediaWiki\Hooks;
4 4
 
5 5
 use SWL\tableUpdater;
6
-
7 6
 use User;
8 7
 
9 8
 /**
Please login to merge, or discard this patch.