mirror of
https://github.com/pronamic/woocommerce-subscriptions.git
synced 2025-10-14 21:32:55 +00:00
16 lines
232 B
PHP
16 lines
232 B
PHP
<?php
|
|
|
|
/**
|
|
* Class ActionScheduler_FinishedAction
|
|
*/
|
|
class ActionScheduler_FinishedAction extends ActionScheduler_Action {
|
|
|
|
public function execute() {
|
|
// don't execute
|
|
}
|
|
|
|
public function is_finished() {
|
|
return TRUE;
|
|
}
|
|
}
|
|
|