X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FrunBatchedQuery.php;h=39a5c5fefef70825b538e84803933aabf4622481;hb=3ea30167fbbcb684370eb436a017cd42cc092fad;hp=64eca9505be668c53078218b7e5c1faa3858d6f9;hpb=526341516a91502ac7cfd2e5590e7432b3f50c5d;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/runBatchedQuery.php b/maintenance/runBatchedQuery.php index 64eca9505b..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::class; +$maintClass = RunBatchedQuery::class; require_once RUN_MAINTENANCE_IF_MAIN;