diff options
Diffstat (limited to 'maintenance/migrateExternallinks.php')
-rw-r--r-- | maintenance/migrateExternallinks.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/maintenance/migrateExternallinks.php b/maintenance/migrateExternallinks.php index 21f8cf5f6468..683c063af1cb 100644 --- a/maintenance/migrateExternallinks.php +++ b/maintenance/migrateExternallinks.php @@ -70,7 +70,7 @@ class MigrateExternallinks extends LoggedUpdateMaintenance { return true; } - private function handleBatch( $lowId ) { + private function handleBatch( int $lowId ): int { $batchSize = $this->getBatchSize(); // range is inclusive, let's subtract one. $highId = $lowId + $batchSize - 1; |