Total Complexity | 1 |
Total Lines | 43 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
11 | class Tag extends AbstractObject implements ExtensibleInterface |
||
12 | { |
||
13 | |||
14 | /** |
||
15 | * REQUIRED. The name of the tag. |
||
16 | * |
||
17 | * |
||
18 | * @var string |
||
19 | */ |
||
20 | public $name; |
||
21 | |||
22 | /** |
||
23 | * A short description for the tag. CommonMark syntax MAY be used for rich text representation. |
||
24 | * |
||
25 | * @var string |
||
26 | */ |
||
27 | public $description; |
||
28 | |||
29 | /** |
||
30 | * Additional external documentation for this tag. |
||
31 | * |
||
32 | * @var ExternalDocumentation |
||
33 | */ |
||
34 | public $externalDocs; |
||
35 | |||
36 | /** |
||
37 | * Tag constructor. |
||
38 | * |
||
39 | * @param string $name |
||
40 | * @param string|null $description |
||
41 | * @param ExternalDocumentation|null $externalDocs |
||
42 | * @param array $additionalProperties |
||
43 | */ |
||
44 | 6 | public function __construct( |
|
56 |