Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | public function listTransactions($page = 1, $page_size = 100) |
||
22 | { |
||
23 | $this->apiEndPoint = "v1/reporting/transactions?page={$page}&page_size={$page_size}"; |
||
1 ignored issue
–
show
|
|||
24 | $this->apiUrl = collect([$this->apiUrl, $this->apiEndPoint])->implode('/'); |
||
1 ignored issue
–
show
|
|||
25 | |||
26 | $this->verb = 'get'; |
||
1 ignored issue
–
show
|
|||
27 | |||
28 | return $this->doPayPalRequest(); |
||
1 ignored issue
–
show
|
|||
29 | } |
||
54 |