Merge "Use the phan exit code directly"
[lhc/web/wiklou.git] / maintenance / populateRecentChangesSource.php
index 452d213..ac87cf3 100644 (file)
@@ -61,11 +61,11 @@ class PopulateRecentChangesSource extends LoggedUpdateMaintenance {
 
                        $dbw->update(
                                'recentchanges',
-                               array( $updatedValues ),
-                               array(
+                               [ $updatedValues ],
+                               [
                                        "rc_source = ''",
                                        "rc_id BETWEEN $blockStart AND $blockEnd"
-                               ),
+                               ],
                                __METHOD__
                        );
 
@@ -83,7 +83,7 @@ class PopulateRecentChangesSource extends LoggedUpdateMaintenance {
                return __CLASS__;
        }
 
-       protected function buildUpdateCondition( DatabaseBase $dbw ) {
+       protected function buildUpdateCondition( Database $dbw ) {
                $rcNew = $dbw->addQuotes( RC_NEW );
                $rcSrcNew = $dbw->addQuotes( RecentChange::SRC_NEW );
                $rcEdit = $dbw->addQuotes( RC_EDIT );