Fixed capitalization of pagetoken

Addresses the first part of #4
This commit is contained in:
Josh Sherman 2014-02-26 09:58:44 -05:00
parent 52af4b2576
commit 5ebede0e03

View file

@ -42,7 +42,7 @@ $results = $google_places->nearbySearch();
### Second page of search nearby results
```php
$google_places->pageToken = $results['next_page_token'];
$google_places->pagetoken = $results['next_page_token'];
$page2_results = $google_places->nearbySearch();
```