ActionScheduler_NullAction::__construct()publicWC 1.0

Метод класса: ActionScheduler_NullAction{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$ActionScheduler_NullAction = new ActionScheduler_NullAction();
$ActionScheduler_NullAction->__construct( $hook, $args, $schedule );
$hook **
-
По умолчанию: ''
$args(массив)
-
По умолчанию: array()
$schedule(ActionScheduler_Schedule)
-
По умолчанию: NULL

Код ActionScheduler_NullAction::__construct() WC 8.7.0

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