Action_Scheduler\Migration
Scheduler::unhook()
Remove the callback for the scheduled job.
Method of the class: Scheduler{}
No Hooks.
Return
null
. Nothing (null).
Usage
$Scheduler = new Scheduler(); $Scheduler->unhook();
Scheduler::unhook() Scheduler::unhook code WC 9.7.1
public function unhook() { remove_action( self::HOOK, array( $this, 'run_migration' ), 10 ); }