mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	Mild code cleanup.
This commit is contained in:
		| @@ -138,7 +138,7 @@ class IndexController extends Controller | ||||
| 
 | ||||
|         // get budgeted for default currency:
 | ||||
|         if (0 === count($availableBudgets)) { | ||||
|             $budgeted = $this->blRepository->budgeted($start, $end, $defaultCurrency,); | ||||
|             $budgeted = $this->blRepository->budgeted($start, $end, $defaultCurrency, ); | ||||
|             $spentArr = $this->opsRepository->sumExpenses($start, $end, null, null, $defaultCurrency); | ||||
|             $spent    = $spentArr[$defaultCurrency->id]['sum'] ?? '0'; | ||||
|             unset($spentArr); | ||||
| @@ -197,7 +197,7 @@ class IndexController extends Controller | ||||
|             $array['spent'] = $spentArr[$entry->transaction_currency_id]['sum'] ?? '0'; | ||||
| 
 | ||||
|             // budgeted in period:
 | ||||
|             $budgeted           = $this->blRepository->budgeted($entry->start_date, $entry->end_date, $entry->transactionCurrency,); | ||||
|             $budgeted           = $this->blRepository->budgeted($entry->start_date, $entry->end_date, $entry->transactionCurrency, ); | ||||
|             $array['budgeted']  = $budgeted; | ||||
|             $availableBudgets[] = $array; | ||||
|             unset($spentArr); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user