Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
36 | public function transactions(string $proxy, string $page, int $pageSize, string $startDate, string $endDate) |
||
37 | { |
||
38 | $query = [ |
||
39 | 'page' => $page, |
||
40 | 'pageSize' => $pageSize, |
||
41 | 'startDate' => $startDate, |
||
42 | 'endDate' => $endDate |
||
43 | ]; |
||
44 | |||
45 | return $this->get("/cards/{$proxy}/transactions", $query); |
||
46 | } |
||
47 | } |
||
48 |