/**
  * @param integer $p_timestamp Timestamp representing the time the event occurred.
  * @param integer $p_user_id   An user identifier.
  * @param integer $p_issue_id  A issue identifier.
  * @param string  $p_tag_name  Tag name linked to the issue.
  * @param boolean $p_tag       Whether tag was being linked or unlinked from the issue.
  */
 public function __construct($p_timestamp, $p_user_id, $p_issue_id, $p_tag_name, $p_tag)
 {
     parent::__construct($p_timestamp, $p_user_id);
     $this->issue_id = $p_issue_id;
     $this->tag_name = $p_tag_name;
     $this->tag = $p_tag;
 }
 /**
  * @param integer $p_timestamp  Timestamp representing the time the event occurred.
  * @param integer $p_user_id    An user identifier.
  * @param integer $p_issue_id   A issue identifier.
  * @param integer $p_old_status Old status value of issue.
  * @param integer $p_new_status New status value of issue.
  */
 public function __construct($p_timestamp, $p_user_id, $p_issue_id, $p_old_status, $p_new_status)
 {
     parent::__construct($p_timestamp, $p_user_id, $p_issue_id);
     $this->issue_id = $p_issue_id;
     $this->old_status = $p_old_status;
     $this->new_status = $p_new_status;
 }
 /**
  * @param integer $p_timestamp Timestamp representing the time the event occurred.
  * @param integer $p_user_id   An user identifier.
  * @param integer $p_issue_id  A issue identifier.
  */
 public function __construct($p_timestamp, $p_user_id, $p_issue_id)
 {
     parent::__construct($p_timestamp, $p_user_id);
     $this->issue_id = $p_issue_id;
 }