Action_Scheduler\Migration
Scheduler::get_migration_runner
Get migration runner object.
Method of the class: Scheduler{}
No Hooks.
Returns
Runner.
Usage
// private - for code of main (parent) class only $result = $this->get_migration_runner();
Scheduler::get_migration_runner() Scheduler::get migration runner code WC 10.4.3
private function get_migration_runner() {
$config = Controller::instance()->get_migration_config_object();
return new Runner( $config );
}