mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-07-13 11:46:27 +09:00
797bc2fd98
git-subtree-dir: includes/lib/action-scheduler git-subtree-split: c828347715e6c3318c8ab8b4fea2d87b31d51aac
18 lines
277 B
PHP
18 lines
277 B
PHP
<?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();
|
|
}
|