Total Complexity | 3 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 4 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
5 | class CommentV3 extends Comment |
||
6 | { |
||
7 | /** @var \JiraRestApi\Issue\DescriptionV3|null */ |
||
8 | public $body; |
||
9 | |||
10 | public function setBody($body) |
||
11 | { |
||
12 | return $this->addCommentParagraph($body); |
||
13 | } |
||
14 | |||
15 | /** |
||
16 | * @param \JiraRestApi\Issue\DescriptionV3|null $description |
||
17 | * |
||
18 | * @return $this |
||
19 | */ |
||
20 | public function addCommentParagraph($description) |
||
29 | } |
||
30 | } |
||
31 |