Sin descripción

ActionScheduler_ActionClaim.php 374B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Class ActionScheduler_ActionClaim
  4. */
  5. class ActionScheduler_ActionClaim {
  6. private $id = '';
  7. private $action_ids = array();
  8. public function __construct( $id, array $action_ids ) {
  9. $this->id = $id;
  10. $this->action_ids = $action_ids;
  11. }
  12. public function get_id() {
  13. return $this->id;
  14. }
  15. public function get_actions() {
  16. return $this->action_ids;
  17. }
  18. }