Action_Scheduler\Migration

Scheduler::mark_completepublicWC 1.0

Mark the migration complete.

Method of the class: Scheduler{}

Hooks from the method

Returns

null. Nothing (null).

Usage

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

Scheduler::mark_complete() code WC 10.4.3

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

	\ActionScheduler_DataController::mark_migration_complete();
	do_action( 'action_scheduler/migration_complete' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
}