mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-14 23:22:52 +01:00
11 lines
268 B
PHP
11 lines
268 B
PHP
<?php
|
|
|
|
namespace App\Repositories\Import\Quickbooks;
|
|
|
|
use App\Repositories\Import\Quickbooks\Contracts\RepositoryInterface as QuickbooksInterface;
|
|
|
|
class InvoiceRepository extends Repository implements QuickbooksInterface
|
|
{
|
|
protected string $entity = "Invoice";
|
|
}
|