jetformbuilder
/
vendor
/
woocommerce
/
action-scheduler
/
classes
/
actions
/
ActionScheduler_FinishedAction.php
ActionScheduler_Action.php
1 year ago
ActionScheduler_CanceledAction.php
1 year ago
ActionScheduler_FinishedAction.php
1 year ago
ActionScheduler_NullAction.php
1 year ago
ActionScheduler_FinishedAction.php
22 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Class ActionScheduler_FinishedAction |
| 5 | */ |
| 6 | class ActionScheduler_FinishedAction extends ActionScheduler_Action { |
| 7 | |
| 8 | /** |
| 9 | * Execute action. |
| 10 | */ |
| 11 | public function execute() { |
| 12 | // don't execute. |
| 13 | } |
| 14 | |
| 15 | /** |
| 16 | * Get finished state. |
| 17 | */ |
| 18 | public function is_finished() { |
| 19 | return true; |
| 20 | } |
| 21 | } |
| 22 |