Total Complexity | 1 |
Total Lines | 63 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
11 | class Info extends AbstractObject implements ExtensibleInterface |
||
12 | { |
||
13 | /** |
||
14 | * REQUIRED. The title of the application. |
||
15 | * |
||
16 | * @var string |
||
17 | */ |
||
18 | public $title; |
||
19 | |||
20 | /** |
||
21 | * REQUIRED. The version of this OpenAPI document |
||
22 | * (which is distinct from the OpenAPI Specification version or the API implementation version). |
||
23 | * |
||
24 | * |
||
25 | * @var string |
||
26 | */ |
||
27 | public $version; |
||
28 | |||
29 | /** |
||
30 | * A short description of the application. CommonMark syntax MAY be used for rich text representation. |
||
31 | * |
||
32 | * @var string |
||
33 | */ |
||
34 | public $description; |
||
35 | |||
36 | /** |
||
37 | * A URL to the Terms of Service for the API. MUST be in the format of a URL. |
||
38 | * |
||
39 | * @var string |
||
40 | */ |
||
41 | public $termsOfService; |
||
42 | |||
43 | /** |
||
44 | * The contact information for the exposed API. |
||
45 | * |
||
46 | * @var Contact |
||
47 | */ |
||
48 | public $contact; |
||
49 | |||
50 | /** |
||
51 | * The license information for the exposed API. |
||
52 | * |
||
53 | * @var License |
||
54 | */ |
||
55 | public $license; |
||
56 | |||
57 | /** |
||
58 | * @param string $title |
||
59 | * @param string $version |
||
60 | * @param string|null $description |
||
61 | * @param array $additionalProperties |
||
62 | */ |
||
63 | 12 | public function __construct( |
|
76 |