X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FrecountCategories.php;h=8ec648ff39d6bc60c7c7ff468d44af3ea15876ed;hb=5a451fd01be397db3209c1881a335423706da5c2;hp=6a00d570e8b8280191b36fd82ef46beea234cb65;hpb=47818f1b44a3525dff1c07778aaef65d06b8ae89;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/recountCategories.php b/maintenance/recountCategories.php index 6a00d570e8..8ec648ff39 100644 --- a/maintenance/recountCategories.php +++ b/maintenance/recountCategories.php @@ -36,6 +36,12 @@ use MediaWiki\MediaWikiServices; * @ingroup Maintenance */ class RecountCategories extends Maintenance { + /** @var string */ + private $mode; + + /** @var int */ + private $minimumId; + public function __construct() { parent::__construct(); $this->addDescription( <<<'TEXT' @@ -168,5 +174,5 @@ TEXT } } -$maintClass = 'RecountCategories'; +$maintClass = RecountCategories::class; require_once RUN_MAINTENANCE_IF_MAIN;