From fda7c693a3e20e83974727494af1916fe1b58cdf Mon Sep 17 00:00:00 2001 From: karneaud Date: Thu, 15 Aug 2024 20:54:18 -0400 Subject: [PATCH] modify method --- app/Services/Import/Quickbooks/Service.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Services/Import/Quickbooks/Service.php b/app/Services/Import/Quickbooks/Service.php index 4001ea0c0c4d..39d2091cf1b7 100644 --- a/app/Services/Import/Quickbooks/Service.php +++ b/app/Services/Import/Quickbooks/Service.php @@ -37,7 +37,7 @@ final class Service */ public function fetchInvoices(int $max = 100): Collection { - return $this->transformer->transform($this->fetchRecords( 'Invoice', $max), 'Invoice'); + return $this->fetchRecords('Invoice', $max) ; }