ActionScheduler_WPCLI_QueueRunner::add_hooks()
Add our hooks to the appropriate actions.
Method of the class: ActionScheduler_WPCLI_QueueRunner{}
No Hooks.
Return
null
. Nothing (null).
Usage
// protected - for code of main (parent) or child class $result = $this->add_hooks();
ActionScheduler_WPCLI_QueueRunner::add_hooks() ActionScheduler WPCLI QueueRunner::add hooks code WC 9.4.2
protected function add_hooks() { add_action( 'action_scheduler_before_execute', array( $this, 'before_execute' ) ); add_action( 'action_scheduler_after_execute', array( $this, 'after_execute' ), 10, 2 ); add_action( 'action_scheduler_failed_execution', array( $this, 'action_failed' ), 10, 2 ); }