1 | <?php |
||
8 | class Units extends Endpoint implements GetContract |
||
9 | { |
||
10 | /** |
||
11 | * Get a page of product lines 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 specific product line. |
||
24 | * |
||
25 | * @param int $id the product line id. |
||
26 | * |
||
27 | * @return stdObject |
||
28 | */ |
||
29 | 3 | public function get($id) |
|
33 | } |
||
34 |