ActionScheduler_Abstract_RecurringSchedule::get_first_date()publicWC 1.0

Get the date & time of the first schedule in this recurring series.

Method of the class: ActionScheduler_Abstract_RecurringSchedule{}

No Hooks.

Return

DateTime|null.

Usage

$ActionScheduler_Abstract_RecurringSchedule = new ActionScheduler_Abstract_RecurringSchedule();
$ActionScheduler_Abstract_RecurringSchedule->get_first_date();

ActionScheduler_Abstract_RecurringSchedule::get_first_date() code WC 8.7.0

public function get_first_date() {
	return clone $this->first_date;
}