1 | <?php |
||
5 | class Location |
||
6 | { |
||
7 | private $street; |
||
8 | private $streetNumber; |
||
9 | private $locality; |
||
10 | private $postcode; |
||
11 | private $country = 'Switzerland'; |
||
12 | private $latitude; |
||
13 | private $longitude; |
||
14 | private $verified = false; |
||
15 | |||
16 | public function __construct($locationArray) |
||
33 | |||
34 | public function getStreet() |
||
38 | |||
39 | public function getStreetNumber() |
||
43 | |||
44 | public function getLocality() |
||
48 | |||
49 | public function getPostalCode() |
||
53 | |||
54 | public function getCountry() |
||
58 | |||
59 | public function getLatitude() |
||
63 | |||
64 | public function getLongitude() |
||
68 | |||
69 | public function getIsVerified() |
||
73 | } |
||
74 |