Example #1
0
 /**
  * Add comment
  *
  * @param string $id   Issue key
  * @param string $body Comment body
  */
 public function postComment($id, $body)
 {
     $this->connect();
     $comment = array('body' => $body);
     $this->soapClient->addComment($this->token, $id, $comment);
 }