mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-30 22:27:32 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			260 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			260 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Repositories\Import\Quickbooks\Contracts;
 | |
| 
 | |
| use Illuminate\Support\Collection;
 | |
| 
 | |
| interface RepositoryInterface
 | |
| {
 | |
|     public function get(int $max = 100): Collection;
 | |
|     public function all(): Collection;
 | |
|     public function count(): int;
 | |
| }
 |