ActionScheduler_Abstract_RecurringSchedule::__sleep()publicWC 1.0

For PHP 5.2 compat, since DateTime objects can't be serialized

Method of the class: ActionScheduler_Abstract_RecurringSchedule{}

No Hooks.

Return

Array.

Usage

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

ActionScheduler_Abstract_RecurringSchedule::__sleep() code WC 8.7.0

public function __sleep() {
	$sleep_params = parent::__sleep();
	$this->first_timestamp = $this->first_date->getTimestamp();
	return array_merge( $sleep_params, array(
		'first_timestamp',
		'recurrence'
	) );
}