mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	Clean up code.
This commit is contained in:
		| @@ -88,9 +88,9 @@ class ShowController extends Controller | ||||
|     public function noBudget(Request $request, Carbon $start = null, Carbon $end = null) | ||||
|     { | ||||
|         /** @var Carbon $start */ | ||||
|         $start = $start ?? session('start'); | ||||
|         $start ??= session('start'); | ||||
|         /** @var Carbon $end */ | ||||
|         $end      = $end ?? session('end'); | ||||
|         $end ??= session('end'); | ||||
|         $subTitle = trans( | ||||
|             'firefly.without_budget_between', | ||||
|             ['start' => $start->isoFormat($this->monthAndDayFormat), 'end' => $end->isoFormat($this->monthAndDayFormat)] | ||||
|   | ||||
		Reference in New Issue
	
	Block a user