Action_Scheduler\Migration
ActionMigrator::__construct
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() ActionMigrator:: construct WC 10.9.4
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;
}