1 | <?php |
||
21 | class NearbyVenuesQuery implements QueryNamedInterface |
||
22 | { |
||
23 | /** |
||
24 | * @var float |
||
25 | */ |
||
26 | protected $latitude; |
||
27 | |||
28 | /** |
||
29 | * @var float |
||
30 | */ |
||
31 | protected $longitude; |
||
32 | |||
33 | /** |
||
34 | * NearbyVenuesQuery constructor. |
||
35 | * |
||
36 | * @param float $latitude |
||
37 | * @param float $longitude |
||
38 | */ |
||
39 | public function __construct($latitude, $longitude) |
||
44 | |||
45 | /** |
||
46 | * @return float |
||
47 | */ |
||
48 | public function latitude() |
||
52 | |||
53 | /** |
||
54 | * @param float $latitude |
||
55 | */ |
||
56 | public function setLatitude($latitude) |
||
60 | |||
61 | /** |
||
62 | * @return float |
||
63 | */ |
||
64 | public function longitude() |
||
68 | |||
69 | /** |
||
70 | * @param float $longitude |
||
71 | */ |
||
72 | public function setLongitude($longitude) |
||
76 | |||
77 | /** |
||
78 | * {@inheritdoc} |
||
79 | */ |
||
80 | public function named() |
||
84 | } |
||
85 |