mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	Spacing fixes
This commit is contained in:
		| @@ -53,7 +53,7 @@ class NewUserController extends Controller | ||||
|         // create normal asset account: | ||||
|         $assetAccount = [ | ||||
|             'name'                   => $request->get('bank_name'), | ||||
| 			'iban'					 => null, | ||||
| 			'iban'                   => null, | ||||
|             'accountType'            => 'asset', | ||||
|             'virtualBalance'         => 0, | ||||
|             'active'                 => true, | ||||
| @@ -70,7 +70,7 @@ class NewUserController extends Controller | ||||
|         if (strlen($request->get('savings_balance') > 0)) { | ||||
|             $savingsAccount = [ | ||||
|                 'name'                   => $request->get('bank_name') . ' savings account', | ||||
| 				'iban'					 => null, | ||||
| 				'iban'                   => null, | ||||
|                 'accountType'            => 'asset', | ||||
|                 'virtualBalance'         => 0, | ||||
|                 'active'                 => true, | ||||
| @@ -88,7 +88,7 @@ class NewUserController extends Controller | ||||
|         if (strlen($request->get('credit_card_limit') > 0)) { | ||||
|             $creditAccount = [ | ||||
|                 'name'                   => 'Credit card', | ||||
| 				'iban'					 => null, | ||||
| 				'iban'                   => null, | ||||
|                 'accountType'            => 'asset', | ||||
|                 'virtualBalance'         => floatval($request->get('credit_card_limit')), | ||||
|                 'active'                 => true, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user