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