Total Complexity | 1 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
10 | class ExternalDocumentation extends AbstractObject implements ExtensibleInterface |
||
11 | { |
||
12 | /** |
||
13 | * REQUIRED. The URL for the target documentation. Value MUST be in the format of a URL. |
||
14 | * |
||
15 | * @var string |
||
16 | */ |
||
17 | public $url; |
||
18 | |||
19 | /** |
||
20 | * A short description of the target documentation. CommonMark syntax MAY be used for rich text representation. |
||
21 | * |
||
22 | * @var string |
||
23 | */ |
||
24 | public $description; |
||
25 | |||
26 | /** |
||
27 | * @param string $url |
||
28 | * @param string|null $description |
||
29 | * @param array $additionalProperties |
||
30 | */ |
||
31 | 6 | public function __construct(string $url, string $description = null, array $additionalProperties = []) |
|
38 |