Total Complexity | 4 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | class DescriptionV3 implements \JsonSerializable |
||
11 | { |
||
12 | /* @var string */ |
||
13 | public $self; |
||
14 | |||
15 | /* @var string */ |
||
16 | public $type = 'doc'; |
||
17 | |||
18 | /* @var integer */ |
||
19 | public $version = 1; |
||
20 | |||
21 | /** @var \JiraRestApi\Issue\ContentField[]|null */ |
||
22 | public $content; |
||
23 | |||
24 | public function jsonSerialize() |
||
27 | } |
||
28 | |||
29 | public function addDescriptionContent($type, $text, $attrs = []) |
||
51 |