File "ActionScheduler_ActionClaim.php"

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

<?php
if (!defined('ABSPATH')) exit;
class ActionScheduler_ActionClaim {
 private $id = '';
 private $action_ids = array();
 public function __construct( $id, array $action_ids ) {
 $this->id = $id;
 $this->action_ids = $action_ids;
 }
 public function get_id() {
 return $this->id;
 }
 public function get_actions() {
 return $this->action_ids;
 }
}