1 | <?php |
||
7 | class AddressingKey |
||
8 | { |
||
9 | /** @var string */ |
||
10 | public $type; |
||
11 | |||
12 | /** @var string */ |
||
13 | public $value; |
||
14 | |||
15 | /** |
||
16 | * This validate and return an array |
||
17 | * @return array |
||
18 | */ |
||
19 | public function toArray(): array |
||
24 | |||
25 | /** |
||
26 | * This function validate a Addressing Key |
||
27 | */ |
||
28 | public function validate() |
||
33 | } |
||
34 |