Action_Scheduler\Migration

ActionMigrator::__construct()publicWC 1.0

ActionMigrator constructor.

Метод класса: ActionMigrator{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$ActionMigrator = new ActionMigrator();
$ActionMigrator->__construct( $source_store, $destination_store, $log_migrator );
$source_store(ActionScheduler_Store) (обязательный)
Source store object.
$destination_store(ActionScheduler_Store) (обязательный)
Destination store object.
$log_migrator(LogMigrator) (обязательный)
Log migrator object.

Код ActionMigrator::__construct() WC 8.7.0

public function __construct( \ActionScheduler_Store $source_store, \ActionScheduler_Store $destination_store, LogMigrator $log_migrator ) {
	$this->source       = $source_store;
	$this->destination  = $destination_store;
	$this->log_migrator = $log_migrator;
}