| 1 | <?php |
||
| 7 | class Geo extends Model |
||
| 8 | { |
||
| 9 | protected $id = null; |
||
| 10 | |||
| 11 | protected $latitude = null; |
||
| 12 | |||
| 13 | protected $longitude = null; |
||
| 14 | |||
| 15 | protected $distance = null; |
||
| 16 | |||
| 17 | protected $propNameMap = [ |
||
| 18 | 'geoId' => 'id' |
||
| 19 | ]; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Retrieve the id property |
||
| 23 | * |
||
| 24 | * @return int|null |
||
| 25 | */ |
||
| 26 | 5 | public function getId() |
|
| 30 | |||
| 31 | /** |
||
| 32 | * Retrieve the latitude property |
||
| 33 | * |
||
| 34 | * @return string|null |
||
| 35 | */ |
||
| 36 | 5 | public function getLatitude() |
|
| 40 | |||
| 41 | /** |
||
| 42 | * Retrieve the longitude property |
||
| 43 | * |
||
| 44 | * @return string|null |
||
| 45 | */ |
||
| 46 | 5 | public function getLongitude() |
|
| 50 | |||
| 51 | /** |
||
| 52 | * Retrieve the distance property |
||
| 53 | * |
||
| 54 | * @return string|null |
||
| 55 | */ |
||
| 56 | public function getDistance() |
||
| 60 | } |
||
| 61 |