From e9e771e57bc6e3ef0aa87b0fe1a2aa74f13d865e Mon Sep 17 00:00:00 2001 From: James Cole Date: Wed, 30 May 2018 18:04:00 +0200 Subject: [PATCH] List 100 entries for bunq. #1443 --- app/Support/Import/Routine/Bunq/StageImportDataHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Support/Import/Routine/Bunq/StageImportDataHandler.php b/app/Support/Import/Routine/Bunq/StageImportDataHandler.php index cba91d0bd1..24ec36257a 100644 --- a/app/Support/Import/Routine/Bunq/StageImportDataHandler.php +++ b/app/Support/Import/Routine/Bunq/StageImportDataHandler.php @@ -284,7 +284,7 @@ class StageImportDataHandler // make request: /** @var Payment $paymentRequest */ $paymentRequest = app(Payment::class); - $result = $paymentRequest->listing($bunqAccountId); + $result = $paymentRequest->listing($bunqAccountId, ['count' => 100]); // loop result: /** @var BunqPayment $payment */ foreach ($result->getValue() as $payment) {