1 | <?php |
||
7 | class Address |
||
8 | { |
||
9 | /** @var string */ |
||
10 | public $addressLine; |
||
11 | |||
12 | /** @var string */ |
||
13 | public $city; |
||
14 | |||
15 | /** @var string */ |
||
16 | public $state; |
||
17 | |||
18 | /** @var string */ |
||
19 | public $zipCode; |
||
20 | |||
21 | /** |
||
22 | * This validate and return an array |
||
23 | * @return array |
||
24 | */ |
||
25 | public function toArray(): array |
||
30 | |||
31 | /** |
||
32 | * This function validate a Addressing Account |
||
33 | */ |
||
34 | public function validate() |
||
39 | } |
||
40 |