/
var
/
www
/
barefootlaw.org
/
wp-content
/
plugins
/
wp-health
/
thirds
/
action-scheduler
/
classes
/
schedules
/
Upload File
HOME
<?php /** * Class ActionScheduler_Schedule */ interface ActionScheduler_Schedule { /** * @param DateTime $after * @return DateTime|null */ public function next( DateTime $after = NULL ); /** * @return bool */ public function is_recurring(); }