1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00

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
{
return $this->transformer->transform($this->fetchRecords( 'Invoice', $max), 'Invoice');
return $this->fetchRecords('Invoice', $max) ;
}