@@ -20,8 +20,7 @@ |
||
20 | 20 | */ |
21 | 21 | public function listTransactions(array $filters, string $fields = 'all') |
22 | 22 | { |
23 | - $filters_list = collect($filters)->isEmpty() ? '' : |
|
24 | - collect($filters)->map(function ($value, $key) { |
|
23 | + $filters_list = collect($filters)->isEmpty() ? '' : collect($filters)->map(function($value, $key) { |
|
25 | 24 | return "{$key}={$value}&"; |
26 | 25 | })->implode(''); |
27 | 26 |