mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-11-15 10:15:24 +00:00
32 lines
594 B
PHP
32 lines
594 B
PHP
|
<?php
|
||
|
|
||
|
namespace MediaWiki\Extension\AbuseFilter;
|
||
|
|
||
|
use ActorMigrationBase;
|
||
|
use MediaWiki\User\ActorStoreFactory;
|
||
|
|
||
|
/**
|
||
|
* Temporary class for actor migration
|
||
|
*/
|
||
|
class AbuseFilterActorMigration extends ActorMigrationBase {
|
||
|
|
||
|
public const SERVICE_NAME = 'AbuseFilterActorMigration';
|
||
|
|
||
|
/**
|
||
|
* @param int $stage
|
||
|
* @param ActorStoreFactory $actorStoreFactory
|
||
|
*/
|
||
|
public function __construct( $stage, ActorStoreFactory $actorStoreFactory ) {
|
||
|
parent::__construct(
|
||
|
[
|
||
|
'af_user' => [],
|
||
|
'afh_user' => [],
|
||
|
],
|
||
|
$stage,
|
||
|
$actorStoreFactory,
|
||
|
[ 'allowUnknown' => false ]
|
||
|
);
|
||
|
}
|
||
|
|
||
|
}
|