File "ActionScheduler_CanceledAction.php"

Full Path: /home/warrior1/public_html/languages/wp-content-20241001222009/plugins/mailpoet/vendor/woocommerce/action-scheduler/classes/actions/ActionScheduler_CanceledAction.php
File size: 390 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
if (!defined('ABSPATH')) exit;
class ActionScheduler_CanceledAction extends ActionScheduler_FinishedAction {
 public function __construct( $hook, array $args = array(), ActionScheduler_Schedule $schedule = null, $group = '' ) {
 parent::__construct( $hook, $args, $schedule, $group );
 if ( is_null( $schedule ) ) {
 $this->set_schedule( new ActionScheduler_NullSchedule() );
 }
 }
}