Total Complexity | 1 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
11 | class Contact |
||
12 | { |
||
13 | /** |
||
14 | * The identifying name of the contact person/organization. |
||
15 | * @var string |
||
16 | */ |
||
17 | public $name; |
||
18 | |||
19 | /** |
||
20 | * The URL pointing to the contact information. MUST be in the format of a URL. |
||
21 | * @var string |
||
22 | */ |
||
23 | public $url; |
||
24 | |||
25 | /** |
||
26 | * The email address of the contact person/organization. MUST be in the format of an email address. |
||
27 | * @var string |
||
28 | */ |
||
29 | public $email; |
||
30 | |||
31 | protected function getRequiredParameters(): array |
||
36 |