| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 6 | class CheckoutEndpoint extends AbstractEndpoint |
||
| 7 | { |
||
| 8 | /** |
||
| 9 | * @param array $query |
||
| 10 | * @return array|GenericEntity[] |
||
| 11 | */ |
||
| 12 | public function findAll(array $query = array()) |
||
| 13 | { |
||
| 14 | $request = new GetJson('/admin/checkouts.json', $query); |
||
| 15 | $response = $this->sendPaged($request, 'checkouts'); |
||
| 16 | return $this->createCollection($response); |
||
| 17 | } |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param array $query |
||
| 21 | * @return int |
||
| 22 | */ |
||
| 23 | public function countAll(array $query = array()) |
||
| 28 | } |
||
| 29 | } |
||
| 30 |