File "ActionScheduler_Schedule.php"

Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/woocommerce/packages/action-scheduler/classes/schedules/ActionScheduler_Schedule.php
File size: 277 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

/**
 * Class ActionScheduler_Schedule
 */
interface ActionScheduler_Schedule {
	/**
	 * @param null|DateTime $after Timestamp.
	 * @return DateTime|null
	 */
	public function next( DateTime $after = NULL );

	/**
	 * @return bool
	 */
	public function is_recurring();
}