Action_Scheduler\Migration
Scheduler::get_migration_runner()
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() Scheduler::get migration runner code WC 9.7.1
private function get_migration_runner() { $config = Controller::instance()->get_migration_config_object(); return new Runner( $config ); }