Cleanup some comments related to DB replication
[lhc/web/wiklou.git] / maintenance / migrateArchiveText.php
index dd78a7d..60dbea1 100644 (file)
@@ -143,7 +143,7 @@ class MigrateArchiveText extends LoggedUpdateMaintenance {
                        }
 
                        $this->output( "... $last\n" );
-                       // $this->commitTransaction() already waited for slaves, no need to re-wait here.
+                       // $this->commitTransaction() already waited for replication; no need to re-wait here
                }
 
                $this->output( "Completed ar_text migration, $count rows updated, $errors missing data.\n" );
@@ -155,5 +155,5 @@ class MigrateArchiveText extends LoggedUpdateMaintenance {
        }
 }
 
-$maintClass = "MigrateArchiveText";
+$maintClass = MigrateArchiveText::class;
 require_once RUN_MAINTENANCE_IF_MAIN;