ActionScheduler_Logger::unhook_stored_action()publicWC 1.0

Method of the class: ActionScheduler_Logger{}

No Hooks.

Return

null. Nothing (null).

Usage

$ActionScheduler_Logger = new ActionScheduler_Logger();
$ActionScheduler_Logger->unhook_stored_action();

ActionScheduler_Logger::unhook_stored_action() code WC 8.7.0

public function unhook_stored_action() {
	remove_action( 'action_scheduler_stored_action', array( $this, 'log_stored_action' ) );
}