ActionScheduler_FatalErrorMonitor::detach
Stop monitoring.
Method of the class: ActionScheduler_FatalErrorMonitor{}
No Hooks.
Returns
null. Nothing (null).
Usage
$ActionScheduler_FatalErrorMonitor = new ActionScheduler_FatalErrorMonitor(); $ActionScheduler_FatalErrorMonitor->detach();
ActionScheduler_FatalErrorMonitor::detach() ActionScheduler FatalErrorMonitor::detach code WC 10.7.0
public function detach() {
$this->claim = null;
$this->untrack_action();
remove_action( 'shutdown', array( $this, 'handle_unexpected_shutdown' ) );
remove_action( 'action_scheduler_before_execute', array( $this, 'track_current_action' ), 0 );
remove_action( 'action_scheduler_after_execute', array( $this, 'untrack_action' ), 0 );
remove_action( 'action_scheduler_execution_ignored', array( $this, 'untrack_action' ), 0 );
remove_action( 'action_scheduler_failed_execution', array( $this, 'untrack_action' ), 0 );
}