mirror of
https://github.com/pronamic/woocommerce-subscriptions.git
synced 2025-10-13 04:42:56 +00:00
19 lines
279 B
PHP
Executable File
19 lines
279 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* Class ActionScheduler_NullSchedule
|
|
*/
|
|
class ActionScheduler_NullSchedule implements ActionScheduler_Schedule {
|
|
|
|
public function next( DateTime $after = NULL ) {
|
|
return NULL;
|
|
}
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function is_recurring() {
|
|
return false;
|
|
}
|
|
}
|
|
|