mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 23:57:33 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			290 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			290 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Repositories\Import\Quickbooks;
 | 
						|
 | 
						|
use App\Repositories\Import\Quickbooks\Repository;
 | 
						|
use App\Repositories\Import\Quickbooks\Contracts\RepositoryInterface;
 | 
						|
 | 
						|
class ItemRepository extends Repository implements RepositoryInterface
 | 
						|
{
 | 
						|
    protected string $entity = "Item";
 | 
						|
}
 |