mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			59 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace FireflyIII\Helpers\Report;
 | |
| 
 | |
| use Carbon\Carbon;
 | |
| use Illuminate\Support\Collection;
 | |
| 
 | |
| /**
 | |
|  * Interface ReportHelperInterface
 | |
|  *
 | |
|  * @package FireflyIII\Helpers\Report
 | |
|  */
 | |
| interface ReportHelperInterface
 | |
| {
 | |
| 
 | |
| 
 | |
|     /**
 | |
|      * This methods fails to take in account transfers FROM shared accounts.
 | |
|      *
 | |
|      * @param Carbon $start
 | |
|      * @param Carbon $end
 | |
|      * @param int    $limit
 | |
|      *
 | |
|      * @return Collection
 | |
|      */
 | |
|     public function expensesGroupedByAccount(Carbon $start, Carbon $end, $limit = 15);
 | |
| 
 | |
|     /**
 | |
|      * This method gets some kind of list for a monthly overview.
 | |
|      *
 | |
|      * @param Carbon $date
 | |
|      *
 | |
|      * @return Collection
 | |
|      */
 | |
|     public function getBudgetsForMonth(Carbon $date);
 | |
| 
 | |
|     /**
 | |
|      * @param Carbon $date
 | |
|      *
 | |
|      * @return array
 | |
|      */
 | |
|     public function listOfMonths(Carbon $date);
 | |
| 
 | |
|     /**
 | |
|      * @param Carbon $date
 | |
|      *
 | |
|      * @return array
 | |
|      */
 | |
|     public function listOfYears(Carbon $date);
 | |
| 
 | |
|     /**
 | |
|      * @param Carbon $date
 | |
|      * @param bool   $showSharedReports
 | |
|      *
 | |
|      * @return array
 | |
|      */
 | |
|     public function yearBalanceReport(Carbon $date, $showSharedReports = false);
 | |
| }
 |