Action_Scheduler\Migration

Scheduler::mark_complete()publicWC 1.0

Mark the migration complete.

Method of the class: Scheduler{}

Hooks from the method

Return

null. Nothing (null).

Usage

$Scheduler = new Scheduler();
$Scheduler->mark_complete();

Scheduler::mark_complete() code WC 8.7.0

public function mark_complete() {
	$this->unschedule_migration();

	\ActionScheduler_DataController::mark_migration_complete();
	do_action( 'action_scheduler/migration_complete' );
}