ActionScheduler_NullAction::__construct()publicWC 1.0

Method of the class: ActionScheduler_NullAction{}

No Hooks.

Return

null. Nothing (null).

Usage

$ActionScheduler_NullAction = new ActionScheduler_NullAction();
$ActionScheduler_NullAction->__construct( $hook, $args, $schedule );
$hook **
-
Default: ''
$args(array)
-
Default: array()
$schedule(ActionScheduler_Schedule)
-
Default: NULL

ActionScheduler_NullAction::__construct() code WC 8.7.0

public function __construct( $hook = '', array $args = array(), ActionScheduler_Schedule $schedule = NULL ) {
	$this->set_schedule( new ActionScheduler_NullSchedule() );
}