Whitespace cleanups
authorAaron Schulz <aschulz@wikimedia.org>
Fri, 25 Mar 2016 17:37:57 +0000 (10:37 -0700)
committerAaron Schulz <aschulz@wikimedia.org>
Fri, 25 Mar 2016 17:37:57 +0000 (10:37 -0700)
Change-Id: I43646a60b8a5b6d5b7813b013fd0f1719d00484c

includes/changes/RecentChange.php

index b6a0868..9f68338 100644 (file)
@@ -461,6 +461,7 @@ class RecentChange {
         */
        public function doMarkPatrolled( User $user, $auto = false, $tags = null ) {
                global $wgUseRCPatrol, $wgUseNPPatrol, $wgUseFilePatrol;
+
                $errors = [];
                // If recentchanges patrol is disabled, only new pages or new file versions
                // can be patrolled, provided the appropriate config variable is set
@@ -497,8 +498,8 @@ class RecentChange {
                PatrolLog::record( $this, $auto, $user, $tags );
 
                Hooks::run(
-                                       'MarkPatrolledComplete',
-                                       [ $this->getAttribute( 'rc_id' ), &$user, false, $auto ]
+                       'MarkPatrolledComplete',
+                       [ $this->getAttribute( 'rc_id' ), &$user, false, $auto ]
                );
 
                return [];