mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	Fix phpstan error courtesy of the laravel 11 upgrade (changed signatures and return types)
This commit is contained in:
		| @@ -128,7 +128,7 @@ class BudgetLimitController extends Controller | ||||
|         $start    = Carbon::createFromFormat('Y-m-d', $request->get('start')); | ||||
|         $end      = Carbon::createFromFormat('Y-m-d', $request->get('end')); | ||||
| 
 | ||||
|         if (false === $start || false === $end) { | ||||
|         if (null === $start || null === $end) { | ||||
|             return response()->json([]); | ||||
|         } | ||||
| 
 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user