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 | public function getCountry() |
||
49 | |||
50 | /** |
||
51 | * Set the country property |
||
52 | * |
||
53 | * @param string $country |
||
54 | * @return $this |
||
55 | */ |
||
56 | public function setCountry($country) |
||
61 | |||
62 | /** |
||
63 | * Retrieve the postcode property |
||
64 | * |
||
65 | * @return string|null |
||
66 | */ |
||
67 | public function getPostcode() |
||
71 | |||
72 | /** |
||
73 | * Set the postcode property |
||
74 | * |
||
75 | * @param string $postcode |
||
76 | * @return $this |
||
77 | */ |
||
78 | public function setPostcode($postcode) |
||
83 | |||
84 | /** |
||
85 | * Retrieve the city property |
||
86 | * |
||
87 | * @return string|null |
||
88 | */ |
||
89 | public function getCity() |
||
93 | |||
94 | /** |
||
95 | * Set the city property |
||
96 | * |
||
97 | * @param string $city |
||
98 | * @return $this |
||
99 | */ |
||
100 | public function setCity($city) |
||
105 | |||
106 | /** |
||
107 | * Retrieve the subway property |
||
108 | * |
||
109 | * @return string|null |
||
110 | */ |
||
111 | public function getSubway() |
||
115 | |||
116 | /** |
||
117 | * Set the subway property |
||
118 | * |
||
119 | * @param string $subway |
||
120 | * @return $this |
||
121 | */ |
||
122 | public function setSubway($subway) |
||
127 | |||
128 | /** |
||
129 | * Retrieve the street property |
||
130 | * |
||
131 | * @return string|null |
||
132 | */ |
||
133 | public function getStreet() |
||
137 | |||
138 | /** |
||
139 | * Set the street property |
||
140 | * |
||
141 | * @param string $street |
||
142 | * @return $this |
||
143 | */ |
||
144 | public function setStreet($street) |
||
149 | |||
150 | /** |
||
151 | * Retrieve the house property |
||
152 | * |
||
153 | * @return string|null |
||
154 | */ |
||
155 | public function getHouse() |
||
159 | |||
160 | /** |
||
161 | * Set the house property |
||
162 | * |
||
163 | * @param string $house |
||
164 | * @return $this |
||
165 | */ |
||
166 | public function setHouse($house) |
||
171 | |||
172 | /** |
||
173 | * Retrieve the block property |
||
174 | * |
||
175 | * @return string|null |
||
176 | */ |
||
177 | public function getBlock() |
||
181 | |||
182 | /** |
||
183 | * Set the block property |
||
184 | * |
||
185 | * @param string $block |
||
186 | * @return $this |
||
187 | */ |
||
188 | public function setBlock($block) |
||
193 | |||
194 | /** |
||
195 | * Retrieve the entrance property |
||
196 | * |
||
197 | * @return string|null |
||
198 | */ |
||
199 | public function getEntrance() |
||
203 | |||
204 | /** |
||
205 | * Set the entrance property |
||
206 | * |
||
207 | * @param string $entrance |
||
208 | * @return $this |
||
209 | */ |
||
210 | public function setEntrance($entrance) |
||
215 | |||
216 | /** |
||
217 | * Retrieve the entryphone property |
||
218 | * |
||
219 | * @return string|null |
||
220 | */ |
||
221 | public function getEntryphone() |
||
225 | |||
226 | /** |
||
227 | * Set the entryphone property |
||
228 | * |
||
229 | * @param string $entryphone |
||
230 | * @return $this |
||
231 | */ |
||
232 | public function setEntryphone($entryphone) |
||
237 | |||
238 | /** |
||
239 | * Retrieve the floor property |
||
240 | * |
||
241 | * @return string|null |
||
242 | */ |
||
243 | public function getFloor() |
||
247 | |||
248 | /** |
||
249 | * Set the floor property |
||
250 | * |
||
251 | * @param string $floor |
||
252 | * @return $this |
||
253 | */ |
||
254 | public function setFloor($floor) |
||
259 | |||
260 | /** |
||
261 | * Retrieve the apartment property |
||
262 | * |
||
263 | * @return string|null |
||
264 | */ |
||
265 | public function getApartment() |
||
269 | |||
270 | /** |
||
271 | * Set the apartment property |
||
272 | * |
||
273 | * @param string $apartment |
||
274 | * @return $this |
||
275 | */ |
||
276 | public function setApartment($apartment) |
||
281 | |||
282 | /** |
||
283 | * Retrieve the recipient property |
||
284 | * |
||
285 | * @return string|null |
||
286 | */ |
||
287 | public function getRecipient() |
||
291 | |||
292 | /** |
||
293 | * Set the recipient property |
||
294 | * |
||
295 | * @param string $recipient |
||
296 | * @return $this |
||
297 | */ |
||
298 | public function setRecipient($recipient) |
||
303 | |||
304 | /** |
||
305 | * Retrieve the phone property |
||
306 | * |
||
307 | * @return string|null |
||
308 | */ |
||
309 | public function getPhone() |
||
313 | |||
314 | /** |
||
315 | * Set the phone property |
||
316 | * |
||
317 | * @param string $phone |
||
318 | * @return $this |
||
319 | */ |
||
320 | public function setPhone($phone) |
||
325 | } |
||
326 |