Action_Scheduler\Migration

Scheduler::get_migration_runner()privateWC 1.0

Get migration runner object.

Method of the class: Scheduler{}

No Hooks.

Return

Runner.

Usage

// private - for code of main (parent) class only
$result = $this->get_migration_runner();

Scheduler::get_migration_runner() code WC 8.7.0

private function get_migration_runner() {
	$config = Controller::instance()->get_migration_config_object();

	return new Runner( $config );
}