Action_Scheduler\Migration
Scheduler::mark_complete()
Mark the migration complete.
Method of the class: Scheduler{}
Hooks from the method
Return
null
. Nothing.
Usage
$Scheduler = new Scheduler(); $Scheduler->mark_complete();
Scheduler::mark_complete() Scheduler::mark complete code WC 7.3.0
public function mark_complete() { $this->unschedule_migration(); \ActionScheduler_DataController::mark_migration_complete(); do_action( 'action_scheduler/migration_complete' ); }