mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 23:27:31 -05: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";
 | 
						|
}
 |