mirror of
https://github.com/pronamic/woocommerce-subscriptions.git
synced 2025-10-15 05:42:56 +00:00
18 lines
262 B
PHP
Executable File
18 lines
262 B
PHP
Executable File
<?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();
|
|
}
|
|
|