Skip to content

Commit

Permalink
Merge pull request #142 from lesstif/analysis-Xl15lO
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
lesstif authored Mar 24, 2018
2 parents b7367cd + 4aa233f commit b4c4d60
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Issue/IssueService.php
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ public function addComment($issueIdOrKey, $comment)
* Get a comment on an issue.
*
* @param string|int $issueIdOrKey Issue id or key
* @param string|int $id Comment id
* @param string|int $id Comment id
*
* @throws JiraException
* @throws \JsonMapper_Exception
Expand Down Expand Up @@ -282,7 +282,7 @@ public function getComments($issueIdOrKey)
* Delete a comment on an issue.
*
* @param string|int $issueIdOrKey Issue id or key
* @param string|int $id Comment id
* @param string|int $id Comment id
*
* @throws JiraException
*
Expand All @@ -294,7 +294,7 @@ public function deleteComment($issueIdOrKey, $id)

$ret = $this->exec($this->uri."/$issueIdOrKey/comment/$id", '', 'DELETE');

$this->log->addInfo('delete comment '.$issueIdOrKey.' '. $id.' result='.var_export($ret, true));
$this->log->addInfo('delete comment '.$issueIdOrKey.' '.$id.' result='.var_export($ret, true));

return $ret;
}
Expand Down

0 comments on commit b4c4d60

Please sign in to comment.