1 | <?php |
||
4 | abstract class AddressAbstract implements AddressInterface |
||
5 | { |
||
6 | |||
7 | /** |
||
8 | * @var string |
||
9 | */ |
||
10 | public $type; |
||
11 | |||
12 | /** |
||
13 | * @var string |
||
14 | */ |
||
15 | public $street1; |
||
16 | |||
17 | /** |
||
18 | * @var string |
||
19 | */ |
||
20 | public $street2; |
||
21 | |||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | public $zip; |
||
26 | |||
27 | /** |
||
28 | * @var string |
||
29 | */ |
||
30 | public $location; |
||
31 | |||
32 | /** |
||
33 | * @var string |
||
34 | */ |
||
35 | public $country; |
||
36 | |||
37 | |||
38 | |||
39 | /** |
||
40 | * @inheritDoc |
||
41 | */ |
||
42 | 4 | public function getType() : ?string |
|
46 | |||
47 | /** |
||
48 | * @inheritDoc |
||
49 | */ |
||
50 | 4 | public function getStreet1() : ?string |
|
54 | |||
55 | /** |
||
56 | * @inheritDoc |
||
57 | */ |
||
58 | 4 | public function getStreet2() : ?string |
|
62 | |||
63 | /** |
||
64 | * @inheritDoc |
||
65 | */ |
||
66 | 4 | public function getZip() : ?string |
|
70 | |||
71 | /** |
||
72 | * @inheritDoc |
||
73 | */ |
||
74 | 4 | public function getLocation() : ?string |
|
78 | |||
79 | /** |
||
80 | * @inheritDoc |
||
81 | */ |
||
82 | 4 | public function getCountry() : ?string |
|
86 | } |
||
87 |