diff --git a/includes/SpecialRemovePII.php b/includes/SpecialRemovePII.php index 2b40706..2049998 100644 --- a/includes/SpecialRemovePII.php +++ b/includes/SpecialRemovePII.php @@ -67,9 +67,11 @@ public function __construct( ) { parent::__construct( 'RemovePII', 'handle-pii' ); + $this->config = $configFactory->makeConfig( 'RemovePII' ); + $this->centralAuthAntiSpoofManager = $centralAuthAntiSpoofManager; $this->centralAuthDatabaseManager = $centralAuthDatabaseManager; - $this->config = $configFactory->makeConfig( 'RemovePII' ); + $this->globalRenameUserValidator = $globalRenameUserValidator; $this->httpRequestFactory = $httpRequestFactory; $this->jobQueueGroupFactory = $jobQueueGroupFactory; $this->userFactory = $userFactory;