Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
28 | private function getVenues() |
||
29 | { |
||
30 | // Searching for venues nearby e.g Lagos, Nigeria |
||
31 | $endpoint = 'venues/search'; |
||
32 | |||
33 | // Prepare parameters |
||
34 | $params = ['near' => 'Lagos, Nigeria']; |
||
35 | |||
36 | // Perform a request to a public resource |
||
37 | $response = json_decode($this->foursquare->GetPublic($endpoint,$params),true); |
||
38 | |||
39 | return $response['response']['venues']; |
||
40 | } |
||
41 | |||
54 |