File "ActionScheduler_NullAction.php"
Full Path: /home/jlklyejr/public_html/wp-content-20241030122153/plugins/woocommerce/packages/action-scheduler/classes/actions/ActionScheduler_NullAction.php
File size: 348 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Class ActionScheduler_NullAction
*/
class ActionScheduler_NullAction extends ActionScheduler_Action {
public function __construct( $hook = '', array $args = array(), ActionScheduler_Schedule $schedule = NULL ) {
$this->set_schedule( new ActionScheduler_NullSchedule() );
}
public function execute() {
// don't execute
}
}