mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			217 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			217 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Firefly\Storage\Budget;
 | |
| 
 | |
| 
 | |
| interface BudgetRepositoryInterface
 | |
| {
 | |
|     public function getAsSelectList();
 | |
|     public function get();
 | |
| 
 | |
|     public function store($data);
 | |
| 
 | |
|     public function find($id);
 | |
| 
 | |
| } 
 |