diff --git a/classes/ActionScheduler_ActionClaim.php b/classes/ActionScheduler_ActionClaim.php index e8a5fb1e..8eb01eaa 100644 --- a/classes/ActionScheduler_ActionClaim.php +++ b/classes/ActionScheduler_ActionClaim.php @@ -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(); /** @@ -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; }