1 | <?php |
||
7 | class Address extends Model |
||
8 | { |
||
9 | |||
10 | protected $country = null; |
||
11 | |||
12 | protected $postcode = null; |
||
13 | |||
14 | protected $city = null; |
||
15 | |||
16 | protected $subway = null; |
||
17 | |||
18 | protected $street = null; |
||
19 | |||
20 | protected $house = null; |
||
21 | |||
22 | protected $block = null; |
||
23 | |||
24 | protected $entrance = null; |
||
25 | |||
26 | protected $entryphone = null; |
||
27 | |||
28 | protected $floor = null; |
||
29 | |||
30 | protected $apartment = null; |
||
31 | |||
32 | protected $recipient = null; |
||
33 | |||
34 | protected $phone = null; |
||
35 | |||
36 | protected $mappingClasses = []; |
||
37 | |||
38 | protected $propNameMap = []; |
||
39 | |||
40 | /** |
||
41 | * Retrieve the country property |
||
42 | * |
||
43 | * @return string|null |
||
44 | */ |
||
45 | 3 | public function getCountry() |
|
49 | |||
50 | /** |
||
51 | * Retrieve the postcode property |
||
52 | * |
||
53 | * @return string|null |
||
54 | */ |
||
55 | 3 | public function getPostcode() |
|
59 | |||
60 | /** |
||
61 | * Retrieve the city property |
||
62 | * |
||
63 | * @return string|null |
||
64 | */ |
||
65 | 3 | public function getCity() |
|
69 | |||
70 | /** |
||
71 | * Retrieve the subway property |
||
72 | * |
||
73 | * @return string|null |
||
74 | */ |
||
75 | 3 | public function getSubway() |
|
79 | |||
80 | /** |
||
81 | * Retrieve the street property |
||
82 | * |
||
83 | * @return string|null |
||
84 | */ |
||
85 | 3 | public function getStreet() |
|
89 | |||
90 | /** |
||
91 | * Retrieve the house property |
||
92 | * |
||
93 | * @return string|null |
||
94 | */ |
||
95 | 4 | public function getHouse() |
|
99 | |||
100 | /** |
||
101 | * Retrieve the entrance property |
||
102 | * |
||
103 | * @return string|null |
||
104 | */ |
||
105 | 3 | public function getEntrance() |
|
109 | |||
110 | /** |
||
111 | * Retrieve the entryphone property |
||
112 | * |
||
113 | * @return string|null |
||
114 | */ |
||
115 | 3 | public function getEntryphone() |
|
119 | |||
120 | /** |
||
121 | * Retrieve the floor property |
||
122 | * |
||
123 | * @return string|null |
||
124 | */ |
||
125 | 4 | public function getFloor() |
|
129 | |||
130 | /** |
||
131 | * Retrieve the apartment property |
||
132 | * |
||
133 | * @return string|null |
||
134 | */ |
||
135 | 3 | public function getApartment() |
|
139 | |||
140 | /** |
||
141 | * Retrieve the recipient property |
||
142 | * |
||
143 | * @return string|null |
||
144 | */ |
||
145 | 3 | public function getRecipient() |
|
149 | |||
150 | /** |
||
151 | * Retrieve the phone property |
||
152 | * |
||
153 | * @return string|null |
||
154 | */ |
||
155 | 3 | public function getPhone() |
|
159 | } |
||
160 |