From e0f96855786ff4e0a0a5ae0872a705da59d6c727 Mon Sep 17 00:00:00 2001 From: RonaldvanMeer Date: Wed, 15 Jul 2015 12:29:11 +0200 Subject: [PATCH] Spacing fixes --- app/Http/Controllers/NewUserController.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Http/Controllers/NewUserController.php b/app/Http/Controllers/NewUserController.php index eadf910803..f568da53f7 100644 --- a/app/Http/Controllers/NewUserController.php +++ b/app/Http/Controllers/NewUserController.php @@ -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,