X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FaddRFCandPMIDInterwiki.php;h=9bab37ca3e9437602da876f9da82f43a644bff77;hb=733704ed8248f71dfb982d22799104a976d1ada4;hp=2262338ad3bd0a6c62e09b853ff54c6a5ca7fb85;hpb=2f29abecadfd93e6fb9250798c31e8d6fbd6f259;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/addRFCandPMIDInterwiki.php b/maintenance/addRFCandPMIDInterwiki.php index 2262338ad3..9bab37ca3e 100644 --- a/maintenance/addRFCandPMIDInterwiki.php +++ b/maintenance/addRFCandPMIDInterwiki.php @@ -28,7 +28,7 @@ require_once __DIR__ . '/Maintenance.php'; * * @since 1.28 */ -class AddRFCAndPMIDInterwiki extends LoggedUpdateMaintenance { +class AddRFCandPMIDInterwiki extends LoggedUpdateMaintenance { public function __construct() { parent::__construct(); $this->addDescription( 'Add RFC and PMID to the interwiki database table' ); @@ -39,7 +39,7 @@ class AddRFCAndPMIDInterwiki extends LoggedUpdateMaintenance { } protected function updateSkippedMessage() { - return 'RFC and PMID already added to interwiki database table'; + return 'RFC and PMID already added to interwiki database table.'; } protected function doDBUpdates() { @@ -91,5 +91,5 @@ class AddRFCAndPMIDInterwiki extends LoggedUpdateMaintenance { } } -$maintClass = 'AddRFCAndPMIDInterwiki'; +$maintClass = AddRFCandPMIDInterwiki::class; require_once RUN_MAINTENANCE_IF_MAIN;