| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 38 | public function history($page = null, $per_page = null, $order = null, $type = null, $occured_at = null, $action = null) |
||
| 39 | { |
||
| 40 | $data = [ |
||
| 41 | 'page' => $page, |
||
| 42 | 'per_page' => $per_page, |
||
| 43 | 'order' => $order, |
||
| 44 | 'type' => $type, |
||
| 45 | 'occured_at' => $occured_at, |
||
| 46 | 'action' => $action, |
||
| 47 | ]; |
||
| 48 | |||
| 49 | return $this->get('/user/billing/history', $data); |
||
| 50 | } |
||
| 51 | } |
||
| 52 |