mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-30 06:50:49 +00:00 
			
		
		
		
	- Small feedback bug in migration controller - Better database create scripts. - Fixed bug in seed scripts. - Cleanup and fixed sorting in various helpers - Extended some tests to catch changed code. - Created show(journal) and edit(journal) (untested) [skip-ci]
		
			
				
	
	
		
			24 lines
		
	
	
		
			707 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			707 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Firefly\Storage\TransactionJournal;
 | |
| 
 | |
| 
 | |
| interface TransactionJournalRepositoryInterface
 | |
| {
 | |
|     public function createSimpleJournal(\Account $from, \Account $to, $description, $amount, \Carbon\Carbon $date);
 | |
| 
 | |
|     public function get();
 | |
| 
 | |
|     public function find($journalId);
 | |
| 
 | |
|     public function getByAccount(\Account $account, $count = 25);
 | |
| 
 | |
|     public function homeBudgetChart(\Carbon\Carbon $start, \Carbon\Carbon $end);
 | |
| 
 | |
|     public function homeCategoryChart(\Carbon\Carbon $start, \Carbon\Carbon $end);
 | |
| 
 | |
|     public function homeBeneficiaryChart(\Carbon\Carbon $start, \Carbon\Carbon $end);
 | |
| 
 | |
|     public function homeComponentChart(\Carbon\Carbon $start, \Carbon\Carbon $end, $chartType);
 | |
| 
 | |
| } |