modify method

This commit is contained in:
karneaud 2024-08-15 20:54:18 -04:00
parent 2e3b89288d
commit fda7c693a3

View File

@ -37,7 +37,7 @@ final class Service
*/ */
public function fetchInvoices(int $max = 100): Collection public function fetchInvoices(int $max = 100): Collection
{ {
return $this->transformer->transform($this->fetchRecords( 'Invoice', $max), 'Invoice'); return $this->fetchRecords('Invoice', $max) ;
} }