diff --git a/app/Generator/Chart/Bill/GoogleBillChartGenerator.php b/app/Generator/Chart/Bill/GoogleBillChartGenerator.php index 47f1fb3ffd..3bb6ae8e62 100644 --- a/app/Generator/Chart/Bill/GoogleBillChartGenerator.php +++ b/app/Generator/Chart/Bill/GoogleBillChartGenerator.php @@ -81,9 +81,9 @@ class GoogleBillChartGenerator implements BillChartGenerator foreach ($entries as $result) { $chart->addRow( clone $result->date, - round($bill->amount_max,2), - round($bill->amount_min,2), - round($result->amount,2) + round($bill->amount_max, 2), + round($bill->amount_min, 2), + round($result->amount, 2) ); } diff --git a/app/Http/Controllers/NewUserController.php b/app/Http/Controllers/NewUserController.php index 4f3efb93a3..c08717e4a7 100644 --- a/app/Http/Controllers/NewUserController.php +++ b/app/Http/Controllers/NewUserController.php @@ -59,7 +59,7 @@ class NewUserController extends Controller 'active' => true, 'user' => Auth::user()->id, 'accountRole' => 'defaultAsset', - 'openingBalance' => round($request->input('bank_balance'),2), + 'openingBalance' => round($request->input('bank_balance'), 2), 'openingBalanceDate' => new Carbon, 'openingBalanceCurrency' => intval($request->input('balance_currency_id')), ]; @@ -76,7 +76,7 @@ class NewUserController extends Controller 'active' => true, 'user' => Auth::user()->id, 'accountRole' => 'savingAsset', - 'openingBalance' => round($request->input('savings_balance'),2), + 'openingBalance' => round($request->input('savings_balance'), 2), 'openingBalanceDate' => new Carbon, 'openingBalanceCurrency' => intval($request->input('balance_currency_id')), ]; @@ -90,7 +90,7 @@ class NewUserController extends Controller 'name' => 'Credit card', 'iban' => null, 'accountType' => 'asset', - 'virtualBalance' => round($request->get('credit_card_limit'),2), + 'virtualBalance' => round($request->get('credit_card_limit'), 2), 'active' => true, 'user' => Auth::user()->id, 'accountRole' => 'ccAsset', diff --git a/app/Models/TransactionJournal.php b/app/Models/TransactionJournal.php index 7f14fc1e03..a2b1fc3f8b 100644 --- a/app/Models/TransactionJournal.php +++ b/app/Models/TransactionJournal.php @@ -66,7 +66,7 @@ use Watson\Validating\ValidatingTrait; * @property-read bool $joinedTransactions * @property-read bool $joinedTransactionTypes * @property-read int $account_id - * @property string $name + * @property string $name * @property-read string $symbol * @property-read \Illuminate\Database\Eloquent\Collection|\FireflyIII\Models\Attachment[] $attachments */