mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-07-16 13:13:33 +09:00
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();
|
|
}
|