X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FrunBatchedQuery.php;h=39a5c5fefef70825b538e84803933aabf4622481;hb=2c35b5be5f8fc477cdd7e4d832de58de3a6ca3d9;hp=b0a2b9242834440a0596e9a54205cd10093c107c;hpb=2dd58ade75d15a5895c0c010e17b6f729a0f72fe;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;