Skip to content

Commit

Permalink
Merge pull request #1113 from crstauf/phpcs/ActionScheduler_ActionCla…
Browse files Browse the repository at this point in the history
…im.php

PHPCS: `classes/ActionScheduler_ActionClaim.php`
  • Loading branch information
barryhughes authored Oct 22, 2024
2 parents 85975ea + ea998bc commit bf5ad55
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions classes/ActionScheduler_ActionClaim.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,18 @@
* Class ActionScheduler_ActionClaim
*/
class ActionScheduler_ActionClaim {
/** @var string */
/**
* Claim ID.
*
* @var string
*/
private $id = '';
/** @var int[] */

/**
* Claimed action IDs.
*
* @var int[]
*/
private $action_ids = array();

/**
Expand All @@ -16,7 +25,7 @@ class ActionScheduler_ActionClaim {
* @param int[] $action_ids Action IDs.
*/
public function __construct( $id, array $action_ids ) {
$this->id = $id;
$this->id = $id;
$this->action_ids = $action_ids;
}

Expand Down

0 comments on commit bf5ad55

Please sign in to comment.