Action_Scheduler\Migration
Scheduler::mark_complete()
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() Scheduler::mark complete code WC 9.6.0
public function mark_complete() { $this->unschedule_migration(); \ActionScheduler_DataController::mark_migration_complete(); do_action( 'action_scheduler/migration_complete' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores }