| 1 | <?php |
||
| 8 | class Addresses extends Endpoint |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Get a page of addresses list. |
||
| 12 | * |
||
| 13 | * @param array $query the request query string. |
||
| 14 | * |
||
| 15 | * @return stdObject |
||
| 16 | */ |
||
| 17 | 3 | public function paginate(array $query = []) |
|
| 21 | |||
| 22 | /** |
||
| 23 | * Get a page of states list. |
||
| 24 | * |
||
| 25 | * @param array $query the request query string. |
||
| 26 | * |
||
| 27 | * @return stdObject |
||
| 28 | */ |
||
| 29 | 3 | public function states(array $query = []) |
|
| 33 | |||
| 34 | /** |
||
| 35 | * Get a page of types list. |
||
| 36 | * |
||
| 37 | * @param array $query the request query string. |
||
| 38 | * |
||
| 39 | * @return stdObject |
||
| 40 | */ |
||
| 41 | 3 | public function types(array $query = []) |
|
| 45 | |||
| 46 | /** |
||
| 47 | * Get a cities endpoint. |
||
| 48 | * |
||
| 49 | * @return Cities |
||
| 50 | */ |
||
| 51 | 24 | public function cities() |
|
| 55 | } |
||
| 56 |