start = $start; $this->cron = $cron; } /** * @param DateTime $after * @return DateTime|null */ public function next( DateTime $after = NULL ) { $after = empty($after) ? clone $this->start : clone $after; return $this->cron->getNextRunDate($after, 0, false); } /** * @return bool */ public function is_recurring() { return true; } /** * For PHP 5.2 compat, since DateTime objects can't be serialized * @return array */ public function __sleep() { $this->start_timestamp = $this->start->getTimestamp(); return array( 'start_timestamp', 'cron' ); } public function __wakeup() { $this->start = as_get_datetime_object($this->start_timestamp); } }