| 1 | <?php |
||
| 8 | class ProductPriceTable extends Endpoint implements GetContract |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Get a page of models list. |
||
| 12 | * |
||
| 13 | * @param array $query the request query string. |
||
| 14 | * |
||
| 15 | * @return stdObject |
||
| 16 | */ |
||
| 17 | public function paginate(array $query = []) |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Get a specific model. |
||
| 24 | * |
||
| 25 | * @param int $id the model id. |
||
| 26 | * |
||
| 27 | * @return stdObject |
||
| 28 | */ |
||
| 29 | public function get($id) |
||
| 33 | } |
||
| 34 |