1 | <?php |
||
23 | class Location |
||
24 | { |
||
25 | /** |
||
26 | * @var float The latitude of the city. |
||
27 | */ |
||
28 | public $lat; |
||
29 | |||
30 | /** |
||
31 | * @var float The longitude of the city. |
||
32 | */ |
||
33 | public $lon; |
||
34 | |||
35 | /** |
||
36 | * Create a new location object. |
||
37 | * |
||
38 | * @param float $lon The longitude of the city. |
||
39 | * @param float $lat The latitude of the city. |
||
40 | * |
||
41 | * @internal |
||
42 | */ |
||
43 | 21 | public function __construct($lon = null, $lat = null) |
|
48 | } |
||
49 |