mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	Clean up code.
This commit is contained in:
		| @@ -86,9 +86,9 @@ class ShowController extends Controller | ||||
|     public function show(Request $request, Category $category, Carbon $start = null, Carbon $end = null) | ||||
|     { | ||||
|         /** @var Carbon $start */ | ||||
|         $start = $start ?? session('start', today(config('app.timezone'))->startOfMonth()); | ||||
|         $start ??= session('start', today(config('app.timezone'))->startOfMonth()); | ||||
|         /** @var Carbon $end */ | ||||
|         $end          = $end ?? session('end', today(config('app.timezone'))->endOfMonth()); | ||||
|         $end ??= session('end', today(config('app.timezone'))->endOfMonth()); | ||||
|         $subTitleIcon = 'fa-bookmark'; | ||||
|         $page         = (int)$request->get('page'); | ||||
|         $attachments  = $this->repository->getAttachments($category); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user