From 4aa233f5c797501a6c4f1ae9533f743279d61e58 Mon Sep 17 00:00:00 2001 From: KwangSeob Jeong Date: Sat, 24 Mar 2018 16:27:40 +0000 Subject: [PATCH] Apply fixes from StyleCI [ci skip] [skip ci] --- src/Issue/IssueService.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Issue/IssueService.php b/src/Issue/IssueService.php index 07bbe991..9769206b 100644 --- a/src/Issue/IssueService.php +++ b/src/Issue/IssueService.php @@ -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 @@ -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 * @@ -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; }