X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FrunBatchedQuery.php;h=39a5c5fefef70825b538e84803933aabf4622481;hb=4835a75ec56444c61c5d0cfbc9e98ceb420fc513;hp=b0a2b9242834440a0596e9a54205cd10093c107c;hpb=55043101b2a89ea1e811b6d35e415f57ed0bf41d;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/runBatchedQuery.php b/maintenance/runBatchedQuery.php index b0a2b92428..39a5c5fefe 100644 --- a/maintenance/runBatchedQuery.php +++ b/maintenance/runBatchedQuery.php @@ -32,7 +32,7 @@ use Wikimedia\Rdbms\IDatabase; * * @ingroup Maintenance */ -class BatchedQueryRunner extends Maintenance { +class RunBatchedQuery extends Maintenance { public function __construct() { parent::__construct(); $this->addDescription( @@ -111,5 +111,5 @@ class BatchedQueryRunner extends Maintenance { } } -$maintClass = "BatchedQueryRunner"; +$maintClass = RunBatchedQuery::class; require_once RUN_MAINTENANCE_IF_MAIN;