X-Git-Url: http://git.cyclocoop.org/data/Luca_Pacioli_%28Gemaelde%29.jpeg?a=blobdiff_plain;f=maintenance%2FrecountCategories.php;h=8ec648ff39d6bc60c7c7ff468d44af3ea15876ed;hb=cfd56e52d96e7c65215a4d9d2f10962794c67f88;hp=6a00d570e8b8280191b36fd82ef46beea234cb65;hpb=1801936f877aac0728bf654a4b2b7508506a672e;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;