| Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/ |
| Current File : /home/x/b/o/xbodynamge/namtation/wp-content/ActionScheduler_Schedule.php.tar |
vendor/woocommerce/action-scheduler/classes/schedules/ActionScheduler_Schedule.php 0000644 00000000710 15113520621 0037616 0 ustar 00 home/xbodynamge/dev/wp-content/plugins/all-in-one-seo-pack <?php
/**
* Class ActionScheduler_Schedule
*/
interface ActionScheduler_Schedule {
/**
* Get the date & time this schedule was created to run, or calculate when it should be run
* after a given date & time.
*
* @param null|DateTime $after Timestamp.
* @return DateTime|null
*/
public function next( ?DateTime $after = null );
/**
* Identify the schedule as (not) recurring.
*
* @return bool
*/
public function is_recurring();
}