Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
50 | 1 | public function list(int $beginTime, int $endTime, int $offset = 0, int $count = 10, string $sortType = 'ASC') |
|
51 | { |
||
52 | $params = [ |
||
53 | 1 | 'begin_time' => $beginTime, |
|
54 | 1 | 'end_time' => $endTime, |
|
55 | 1 | 'sort_type' => $sortType, |
|
56 | 1 | 'offset' => $offset, |
|
57 | 1 | 'count' => $count, |
|
58 | ]; |
||
59 | |||
60 | 1 | return $this->httpPostJson('card/giftcard/order/batchget', $params); |
|
61 | } |
||
79 |