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