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