| 1 | <?php |
||
| 18 | class Address |
||
| 19 | { |
||
| 20 | private $addressLine1; |
||
| 21 | private $addressLine2; |
||
| 22 | private $city; |
||
| 23 | private $region; |
||
| 24 | private $postalCode; |
||
| 25 | private $country; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @return mixed |
||
| 29 | */ |
||
| 30 | public function getAddressLine1() |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @param mixed $addressLine1 |
||
| 37 | */ |
||
| 38 | public function setAddressLine1($addressLine1) |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @return mixed |
||
| 45 | */ |
||
| 46 | public function getAddressLine2() |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @param mixed $addressLine2 |
||
| 53 | */ |
||
| 54 | public function setAddressLine2($addressLine2) |
||
| 58 | |||
| 59 | /** |
||
| 60 | * @return mixed |
||
| 61 | */ |
||
| 62 | public function getCity() |
||
| 66 | |||
| 67 | /** |
||
| 68 | * @param mixed $city |
||
| 69 | */ |
||
| 70 | public function setCity($city) |
||
| 74 | |||
| 75 | /** |
||
| 76 | * @return mixed |
||
| 77 | */ |
||
| 78 | public function getRegion() |
||
| 82 | |||
| 83 | /** |
||
| 84 | * @param mixed $region |
||
| 85 | */ |
||
| 86 | public function setRegion($region) |
||
| 90 | |||
| 91 | /** |
||
| 92 | * @return mixed |
||
| 93 | */ |
||
| 94 | public function getPostalCode() |
||
| 98 | |||
| 99 | /** |
||
| 100 | * @param mixed $postalCode |
||
| 101 | */ |
||
| 102 | public function setPostalCode($postalCode) |
||
| 106 | |||
| 107 | /** |
||
| 108 | * @return mixed |
||
| 109 | */ |
||
| 110 | public function getCountry() |
||
| 114 | |||
| 115 | /** |
||
| 116 | * @param mixed $country |
||
| 117 | */ |
||
| 118 | public function setCountry($country) |
||
| 122 | |||
| 123 | } |